summaryrefslogtreecommitdiff
path: root/s_conf.h
diff options
context:
space:
mode:
Diffstat (limited to 's_conf.h')
-rw-r--r--s_conf.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/s_conf.h b/s_conf.h
deleted file mode 100644
index 09c4ea7..0000000
--- a/s_conf.h
+++ /dev/null
@@ -1,26 +0,0 @@
-#ifndef GCON_H
-#define GCON_H
-
-#include "conf.h"
-
-using namespace std;
-
-class s_conf
-{
-private:
- static conf* obj;
-
-public:
- static void init()
- {
- obj = new conf( CONFILE );
- }
-
- static conf& get()
- {
- return *obj;
- }
-};
-
-
-#endif