Go to the source code of this file.
#define HEBI_DISABLE_COPY |
( |
|
Class | ) |
|
Value: \
Class(const Class& other) = delete; \
\
Class& operator= (const Class& other) = delete;
Definition at line 17 of file util.hpp.
#define HEBI_DISABLE_COPY_MOVE |
( |
|
Class | ) |
|
Value: \
Class(const Class& other) = delete; \
\
Class(const Class&& other) = delete; \
\
Class& operator= (const Class& other) = delete; \
\
Class& operator= (const Class&& other) = delete;
This file defines helper macros to make the other files more readable.
Definition at line 7 of file util.hpp.