Go to the source code of this file.
|
| Gray |
| < The main namespace for all Core functions.
|
|
- Copyright
- 1992 - 2020 Dennis Robinson (http://www.menasoft.com)
◆ NonCopyable_IMPL
#define NonCopyable_IMPL |
( |
|
_TYPE | ) |
private: _TYPE(const _TYPE&) IS_DELETE; const _TYPE& operator=(const _TYPE&) IS_DELETE; |
Restrict the copy constructor and assignment operator GNUC - defaulted and deleted functions only available with -std=c++11 or -std=gnu++11 Make this a macro to avoid linkage inconsistency with use in DLL/SO and templates.