Effective implementation of algorithms (Master Thesis)
Effective and error-free implementation of algorithms
src/utils/macros/evil_constructors.h
Go to the documentation of this file.
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
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Defines