summaryrefslogtreecommitdiff
path: root/src/conf/conf.h
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2013-04-06 13:14:41 +0200
committerPaul Buetow <paul@buetow.org>2013-04-06 13:14:41 +0200
commit520f54d6219b7c625b4e07463ac393e6982ddab6 (patch)
tree74b4483786b3842b1a0384fd33deb7483276bea1 /src/conf/conf.h
parentae4e87df37ed8904de92c7cf2f3a11128cda2a21 (diff)
tagging ychat-0.7.1ychat-0.7.1
Diffstat (limited to 'src/conf/conf.h')
-rwxr-xr-xsrc/conf/conf.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/conf/conf.h b/src/conf/conf.h
index 3a7d0c6..7508872 100755
--- a/src/conf/conf.h
+++ b/src/conf/conf.h
@@ -1,7 +1,9 @@
+// class conf declaration. this class parses the server config file.
+
#ifndef CONF_H
#define CONF_H
-class conf; // Predefine for nmap.tmpl
+class conf;
#include "../incl.h"
#include "../maps/nmap.h"
@@ -16,12 +18,10 @@ private:
TiXmlDocument* p_xml;
void exit_if_xml_error() const;
void parse_xml( TiXmlNode* p_node, vector<string>* p_vec);
-
public:
- conf(string s_conf, map<string,string>* p_start_params);
+ //conf ( string s_conf );
+ conf ( string s_conf, map<string,string>* p_start_params );
~conf();
-
- string colored_error_msg( string s_key ); //<<
};
#endif