// ============================================================ // // static.cpp // // Copyright 2002, Dennis Meilicke and Rene Peralta // // ============================================================ // // Description: // // Intialization of static data. // // Any static class members should be initialized here. // // ============================================================ #include #include // ============================================================ // // Any static class data should be declared here. // //Base::alloc_t *Base::alloc = new Base::alloc_t; Base::alloc_t *Base::alloc = 0; #include