diff options
Diffstat (limited to 'CPP/Common/MyTypes.h')
-rw-r--r-- | CPP/Common/MyTypes.h | 21 |
1 files changed, 3 insertions, 18 deletions
diff --git a/CPP/Common/MyTypes.h b/CPP/Common/MyTypes.h index 71b8e7f..8f44f67 100644 --- a/CPP/Common/MyTypes.h +++ b/CPP/Common/MyTypes.h | |||
@@ -1,9 +1,10 @@ | |||
1 | // Common/MyTypes.h | 1 | // Common/MyTypes.h |
2 | 2 | ||
3 | #ifndef __COMMON_MY_TYPES_H | 3 | #ifndef ZIP7_INC_COMMON_MY_TYPES_H |
4 | #define __COMMON_MY_TYPES_H | 4 | #define ZIP7_INC_COMMON_MY_TYPES_H |
5 | 5 | ||
6 | #include "../../C/7zTypes.h" | 6 | #include "../../C/7zTypes.h" |
7 | #include "Common.h" | ||
7 | 8 | ||
8 | typedef int HRes; | 9 | typedef int HRes; |
9 | 10 | ||
@@ -33,20 +34,4 @@ struct CBoolPair | |||
33 | } | 34 | } |
34 | }; | 35 | }; |
35 | 36 | ||
36 | #define CLASS_NO_COPY(cls) \ | ||
37 | private: \ | ||
38 | cls(const cls &); \ | ||
39 | cls &operator=(const cls &); | ||
40 | |||
41 | class CUncopyable | ||
42 | { | ||
43 | protected: | ||
44 | CUncopyable() {} // allow constructor | ||
45 | // ~CUncopyable() {} | ||
46 | CLASS_NO_COPY(CUncopyable) | ||
47 | }; | ||
48 | |||
49 | #define MY_UNCOPYABLE :private CUncopyable | ||
50 | // #define MY_UNCOPYABLE | ||
51 | |||
52 | #endif | 37 | #endif |