#include bool TaskMan::Inited = false; TaskMan::TaskMan() throw (GeneralException) { if (Inited) { throw GeneralException("Another Task Manager is already running, aborting."); } Inited = true; } int TaskMan::AddTask(Task * t) { } void TaskMan::MainLoop() { }