This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Defines | |
#define | PRIVATE_COPY(thisclass) private: thisclass (const thisclass & copy) |
#define | PRIVATE_ASSIGN(thisclass) private: const thisclass& operator=( const thisclass & assign) |
#define | NO_COPY(thisclass) PRIVATE_COPY( thisclass ); PRIVATE_ASSIGN( thisclass) |
Definition in file utility.h.
|
Makes sure nothing can be copied. The functions are not defined and not public. |
|
Adds a private assignment operator. This way, we avoid idiotic default assignments |
|
Adds a private copy constructor. This way, we avoid idiotic default copiers |
More Info? Michael Peeters. Also, check our research website: www.alna.vub.ac.be
Last update: June 2002.