Effective implementation of algorithms (Master Thesis)
Effective and error-free implementation of algorithms
|
00001 #ifndef H_UTILS_MACRO_EVIL_CONSTRUCTORS 00002 #define H_UTILS_MACRO_EVIL_CONSTRUCTORS 00003 00021 #define DISALLOW_EVIL_CONSTRUCTORS(type) \ 00022 void operator=(type const &); \ 00023 type(type const &); 00024 00025 00026 #endif // H_UTILS_MACRO_EVIL_CONSTRUCTORS