ODIN
|
#include <tjstatic.h>
This template class handles static members of all classes that must be initialised exactly once. The rationale behind this is that some of the classes posses static members on which a certain action has to be performed EXACTLY once BEFORE anything else happens with that class. The 'StaticHandler' serves as as a base class for classes that require this feature. It makes this easier by keeping track of how often the static members have been initialised so that this is done only once. The following steps must be performed to make use of the StaticHandler:
Definition at line 95 of file tjstatic.h.