summaryrefslogtreecommitdiff
path: root/conf.h
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2010-11-21 16:18:08 +0000
committerPaul Buetow <paul@buetow.org>2010-11-21 16:18:08 +0000
commit58885c244c2b9625d0917797dedd3850bf07ae53 (patch)
tree908b09f5dcb348b48d193ce522dc73927d66ed2c /conf.h
Diffstat (limited to 'conf.h')
-rw-r--r--conf.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/conf.h b/conf.h
new file mode 100644
index 0000000..6e2a890
--- /dev/null
+++ b/conf.h
@@ -0,0 +1,24 @@
+// class conf declaration. this class parses the server config file.
+
+#ifndef s_conf_H
+#define s_conf_H
+
+#include "incl.h"
+#include "cont.h"
+#include "name.h"
+
+using namespace std;
+
+class conf : public cont, name
+{
+private:
+
+public:
+ // public methods:
+ conf ( string s_conf ); // standard constructor.
+ ~conf(); // standard destructor.
+
+ virtual void parse( ); // parses the config file.
+};
+
+#endif