----------------------------------------------------------------------------- Static method to destroy the singleton. -----------------------------------------------------------------------------
| 106 | // Static method to destroy the singleton. |
| 107 | //----------------------------------------------------------------------------- |
| 108 | void Manager::Destroy |
| 109 | ( |
| 110 | ) |
| 111 | { |
| 112 | delete s_instance; |
| 113 | s_instance = NULL; |
| 114 | } |
| 115 | |
| 116 | //----------------------------------------------------------------------------- |
| 117 | // <Manager::getVersion> |
nothing calls this directly
no outgoing calls
no test coverage detected