Go to the source code of this file.
◆ NE_COPY_DEFAULT
| #define NE_COPY_DEFAULT |
( |
| KLASS | ) |
|
Value: KLASS& operator=(const KLASS&) = default; \
KLASS(const KLASS&) = default;
◆ NE_COPY_DELETE
| #define NE_COPY_DELETE |
( |
| KLASS | ) |
|
Value: KLASS& operator=(const KLASS&) = delete; \
KLASS(const KLASS&) = delete;
◆ NE_MOVE_DEFAULT
| #define NE_MOVE_DEFAULT |
( |
| KLASS | ) |
|
Value: KLASS& operator=(KLASS&&) = default; \
KLASS(KLASS&&) = default;
◆ NE_MOVE_DELETE
| #define NE_MOVE_DELETE |
( |
| KLASS | ) |
|
Value: KLASS& operator=(KLASS&&) = delete; \
KLASS(KLASS&&) = delete;