Go to the documentation of this file. 7 #define HEBI_DISABLE_COPY_MOVE(Class) \ 9 Class(const Class& other) = delete; \ 11 Class(const Class&& other) = delete; \ 13 Class& operator= (const Class& other) = delete; \ 15 Class& operator= (const Class&& other) = delete; 17 #define HEBI_DISABLE_COPY(Class) \ 19 Class(const Class& other) = delete; \ 21 Class& operator= (const Class& other) = delete;