summaryrefslogtreecommitdiff
path: root/plugins/!NotAdopted/HistoryStats/utils/pattern.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/!NotAdopted/HistoryStats/utils/pattern.h')
-rw-r--r--plugins/!NotAdopted/HistoryStats/utils/pattern.h39
1 files changed, 0 insertions, 39 deletions
diff --git a/plugins/!NotAdopted/HistoryStats/utils/pattern.h b/plugins/!NotAdopted/HistoryStats/utils/pattern.h
deleted file mode 100644
index f8ce4996a7..0000000000
--- a/plugins/!NotAdopted/HistoryStats/utils/pattern.h
+++ /dev/null
@@ -1,39 +0,0 @@
-#if !defined(HISTORYSTATS_GUARD_UTILS_PATTERN_H)
-#define HISTORYSTATS_GUARD_UTILS_PATTERN_H
-
-namespace pattern
-{
- template<typename T_>
- class NotCopyable
- {
- private:
- NotCopyable(const NotCopyable&);
- const NotCopyable& operator =(const NotCopyable&);
-
- protected:
- NotCopyable()
- {
- }
-
- ~NotCopyable()
- {
- }
- };
-
- template<typename T_>
- class NotInstantiable
- {
- private:
- NotInstantiable(const NotInstantiable&);
- const NotInstantiable& operator =(const NotInstantiable&);
-
- protected:
- NotInstantiable();
-
- ~NotInstantiable()
- {
- }
- };
-}
-
-#endif // HISTORYSTATS_GUARD_UTILS_PATTERN_H \ No newline at end of file