diff options
Diffstat (limited to 'plugins/HistoryStats/src/utils/pattern.h')
-rw-r--r-- | plugins/HistoryStats/src/utils/pattern.h | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/plugins/HistoryStats/src/utils/pattern.h b/plugins/HistoryStats/src/utils/pattern.h new file mode 100644 index 0000000000..f8ce4996a7 --- /dev/null +++ b/plugins/HistoryStats/src/utils/pattern.h @@ -0,0 +1,39 @@ +#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 |