#define GB_AUTO_CREATABLE ...
This macro indicates that a class can automatically creates an hidden instance when it is used statically.
For example, the Form class uses this feature. For example, if you name your form
class FMyForm
, you can call FMyForm.Show()
directly. Then, if not already done, an instance
of the form is automatically created.