summaryrefslogtreecommitdiff
path: root/includes/Singleton.h
diff options
context:
space:
mode:
Diffstat (limited to 'includes/Singleton.h')
-rw-r--r--includes/Singleton.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/includes/Singleton.h b/includes/Singleton.h
deleted file mode 100644
index 6b2214e..0000000
--- a/includes/Singleton.h
+++ /dev/null
@@ -1,16 +0,0 @@
-#ifndef SINGLETON_H
-#define SINGLETON_H
-
-template<typename T>
-
-class Singleton
-{
-public:
- static T& Ref()
- {
- static T instance;
- return instance;
- }
-};
-
-#endif // SINGLETON_H