#include "../config/cdatapool/dataPoolInit.h" #include #include #include #ifdef GCOV #include #endif #include #include #include #include #include /* Global instantiations normally done in main.cpp */ /* Initialize Data Pool */ //namespace glob { DataPool dataPool(datapool::dataPoolInit); //} namespace sif { /* Set up output streams */ ServiceInterfaceStream debug("DEBUG"); ServiceInterfaceStream info("INFO"); ServiceInterfaceStream error("ERROR"); ServiceInterfaceStream warning("WARNING"); } /* Global object manager */ ObjectManagerIF *objectManager; int customSetup() { // global setup objectManager = new ObjectManager(Factory::produce); objectManager -> initialize(); return 0; }