summaryrefslogtreecommitdiff
path: root/src/conf/conf.h
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2013-04-06 13:14:44 +0200
committerPaul Buetow <paul@buetow.org>2013-04-06 13:14:44 +0200
commit5b7605790328c6c0f473296df444d0f4a79ac779 (patch)
tree48b545ac0295c69fb02247d4ad780be311642462 /src/conf/conf.h
parentd3982ec72b255876db00825605d1d5aae0bc313e (diff)
tagging ychat-0.7.6ychat-0.7.6
Diffstat (limited to 'src/conf/conf.h')
-rwxr-xr-xsrc/conf/conf.h13
1 files changed, 6 insertions, 7 deletions
diff --git a/src/conf/conf.h b/src/conf/conf.h
index 20aa91c..c1d0399 100755
--- a/src/conf/conf.h
+++ b/src/conf/conf.h
@@ -3,7 +3,6 @@
class conf; // Predefine for nmap.tmpl
-#include <map>
#include "../incl.h"
#include "../maps/shashmap.h"
#include "../name.h"
@@ -14,15 +13,15 @@ using namespace std;
class conf : public shashmap<string>, name
{
private:
- TiXmlDocument* p_xml;
- void exit_if_xml_error() const;
- void parse_xml( TiXmlNode* p_node, vector<string>* p_vec);
+ 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();
+ conf(string s_conf, map<string,string>* p_start_params);
+ ~conf();
- string colored_error_msg( string s_key ); //<<
+ string colored_error_msg( string s_key ); //<<
};
#endif