summaryrefslogtreecommitdiff
path: root/src/conf/conf.h
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2013-04-06 13:14:45 +0200
committerPaul Buetow <paul@buetow.org>2013-04-06 13:14:45 +0200
commit5f4e214740242513c837c8a005ca23779bab1d0c (patch)
tree3880f745b0d3376030e3342e60679f25b38bdc4c /src/conf/conf.h
parent23c5e7d57e1e9216f4da3446656df2dc7202975d (diff)
tagging ychat-0.8.2ychat-0.8.2
Diffstat (limited to 'src/conf/conf.h')
-rwxr-xr-xsrc/conf/conf.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/conf/conf.h b/src/conf/conf.h
index b385059..7dc779c 100755
--- a/src/conf/conf.h
+++ b/src/conf/conf.h
@@ -19,10 +19,12 @@ private:
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, map<string,string>* p_main_loop_params);
~conf();
- int get_int(string s_key);
+ string colored_error_msg(string s_key); //<<
+ int get_int(string s_key);
+ vector<string> get_vector(string s_key);
};
#endif