Main Page   Namespace List   Alphabetical List   Compound List   File List   Compound Members   File Members  

mconfig.h

Go to the documentation of this file.
00001 /***************************************************************************
00002                                  mconfig.h
00003                              -------------------
00004     begin                : Fri Feb 1 2002
00005     copyright            : (C) 2002 by Constantinos A. Kotsokalis
00006     email                : ckotso@grnet.gr
00007  ***************************************************************************/
00008 
00009 /***************************************************************************
00010  *                                                                         *
00011  *   This program is free software; you can redistribute it and/or modify  *
00012  *   it under the terms of the GNU General Public License as published by  *
00013  *   the Free Software Foundation; either version 2 of the License, or     *
00014  *   (at your option) any later version.                                   *
00015  *                                                                         *
00016  ***************************************************************************/
00017 
00018 #ifndef MCONFIG_H
00019 #define MCONFIG_H
00020 
00021 class MConfig;
00022 
00023 #include <cc++/misc.h>
00024 
00025 #ifdef  CCXX_NAMESPACES
00026     using namespace std;
00027     using namespace ost;
00028 #endif
00029 
00030 #include "stripper.h"
00031 
00032 #include <stdio.h>
00033 #include <errno.h>
00034 
00035 #include <iostream>
00036 #include <fstream>
00037 #include <vector>
00038 #include <string>
00039 #include <map>
00040 
00044 class MConfig {
00045 public:
00047     MConfig(const char *);
00049   virtual ~MConfig();
00051     virtual const map< string, vector<string> >& getconfigmap();
00052 
00053 private:
00054   // The map< string, vector<string> > configmap
00055     map< string, vector<string> > configmap;
00056 };
00057 
00058 #endif

Generated on Thu Jun 26 00:23:12 2003 for Panoptis by doxygen1.2.18