class nocopy introduced
This commit is contained in:
parent
92023b533a
commit
67a282f19f
@ -124,6 +124,14 @@ int upx_tolower(int c);
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
class nocopy
|
||||||
|
{
|
||||||
|
nocopy(const nocopy &); // undefined
|
||||||
|
nocopy& operator=(const nocopy &); // undefined
|
||||||
|
public:
|
||||||
|
inline nocopy() {}
|
||||||
|
};
|
||||||
|
|
||||||
#endif /* already included */
|
#endif /* already included */
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user