Initialization class for the global FileManager structure.
By default, the FileManager structure does not automatically initialize. The application determines the best time to start up and shut down the global singleton. To make this process easier, create an instance of this class in your main() function or use one of the application class templates which will do this task for you.
There should be only one instance of this class in existence in the application.
int main(int argc,char **argv)
{
DoStuff();
return 0;
}
Initialization class for the global FileManager structure.
Definition burger.h:18324
Global ANSI Memory Manager helper class.
Definition burger.h:5622
- Note
- This class can and will allocate memory at runtime via the initialization of FileManager. It's crucial that the GlobalMemoryManager is initialized BEFORE this class instance is created.
- See also
- GlobalMemoryManager or FileManager