diff options
Diffstat (limited to 'ychat-0.7.2/src/data/con_base.h')
| -rwxr-xr-x | ychat-0.7.2/src/data/con_base.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/ychat-0.7.2/src/data/con_base.h b/ychat-0.7.2/src/data/con_base.h new file mode 100755 index 0000000..60b12c2 --- /dev/null +++ b/ychat-0.7.2/src/data/con_base.h @@ -0,0 +1,19 @@ +#include "../incl.h" +#ifdef DATABASE + +#ifndef CON_BASE_H +#define CON_BASE_H + +#include "../time/timo.h" + +using namespace std; + +class con_base : public timo +{ +public: + con_base( ); + ~con_base( ); +}; + +#endif +#endif |
