![]() |
Base class for non-creatable (static) classes.The NonCreatable class is intended to work as a base class for non-creatable classes, i.e. classes that cannot be instantiated and exclusively offer static functions/data. Both the standard as well as the copy constructor and the copy assignment operator are declared private and left undefinded in order to prohibit the instantiation of objects of derived classes.
.
More...
#include <NonCreatable.h>
Inherited by blaze::Random< Type > [private]
.
Private Member Functions | |
Constructors and copy assignment operator | |
NonCreatable () | |
Constructor (private & undefined) | |
NonCreatable (const NonCreatable &) | |
Copy constructor (private & undefined) | |
NonCreatable & | operator= (const NonCreatable &) |
Copy assignment operator (private & undefined) | |
Base class for non-creatable (static) classes.
The NonCreatable class is intended to work as a base class for non-creatable classes, i.e. classes that cannot be instantiated and exclusively offer static functions/data. Both the standard as well as the copy constructor and the copy assignment operator are declared private and left undefinded in order to prohibit the instantiation of objects of derived classes.
.