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