diff options
Diffstat (limited to 'include/ConfigFile.h')
-rw-r--r-- | include/ConfigFile.h | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/include/ConfigFile.h b/include/ConfigFile.h index 11434bd..02e9bbe 100644 --- a/include/ConfigFile.h +++ b/include/ConfigFile.h @@ -1,19 +1,19 @@ -#ifndef __CONFIGFILE_H__ -#define __CONFIGFILE_H__ - -#include <Exceptions.h> -#include <Handle.h> -#include <map> - -typedef std::map<String, String> ConfigSectionContents; -typedef std::map<String, ConfigSectionContents> ConfigSection; - -class ConfigFile : public Base { - public: - ConfigFile(Handle *) throw (GeneralException); - ConfigSectionContents & operator[](String); - private: - ConfigSection c; -}; - -#endif +#ifndef __CONFIGFILE_H__
+#define __CONFIGFILE_H__
+
+#include <Exceptions.h>
+#include <Handle.h>
+#include <map>
+
+typedef std::map<String, String> ConfigSectionContents;
+typedef std::map<String, ConfigSectionContents> ConfigSection;
+
+class ConfigFile : public Base {
+ public:
+ ConfigFile(Handle *) throw (GeneralException);
+ ConfigSectionContents & operator[](String);
+ private:
+ ConfigSection c;
+};
+
+#endif
|