| 49 | }; |
| 50 | |
| 51 | template<> bool CSingleton< CDebugConsole >::Create() |
| 52 | { |
| 53 | DAEDALUS_ASSERT(mpInstance == NULL, "Already initialised"); |
| 54 | |
| 55 | mpInstance = new IDebugConsole(); |
| 56 | |
| 57 | return mpInstance ? true : false; |
| 58 | } |
| 59 | |
| 60 | CDebugConsole::~CDebugConsole() |
| 61 | { |
nothing calls this directly
no outgoing calls
no test coverage detected