#ifndef __CONFIGFILE_H__ #define __CONFIGFILE_H__ #include #include #include typedef std::map ConfigSectionContents; typedef std::map ConfigSection; class ConfigFile : public Base { public: ConfigFile(Handle *) throw (GeneralException); ConfigSectionContents & operator[](String); private: ConfigSection c; }; #endif