From 9cd3ccffd5372dfde3af478e3f832f18db4be3f1 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Sat, 6 Apr 2013 13:14:41 +0200 Subject: tagging tags --- ychat-0.3/conf.h | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100755 ychat-0.3/conf.h (limited to 'ychat-0.3/conf.h') diff --git a/ychat-0.3/conf.h b/ychat-0.3/conf.h new file mode 100755 index 0000000..6e2a890 --- /dev/null +++ b/ychat-0.3/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 -- cgit v1.2.3