// ============================================================ // // initglobal.h // // Copyright 2002, Dennis Meilicke and Rene Peralta // // ============================================================ // // Description: // // Temporary fix for global initialization problem. // // ============================================================ #ifndef __ln3_initglobal__ #define __ln3_initglobal__ // // Initialize global state // class lnInitGlobal { public: lnInitGlobal( ) { Base::InitAllocator( ); } }; static lnInitGlobal __lnInitGlobal; #endif