| 18 | CTrayIconController *s_pSharedTrayController = NULL; |
| 19 | |
| 20 | CTrayIconController *CTrayIconController::SharedInstance() |
| 21 | { |
| 22 | if ( !s_pSharedTrayController ) |
| 23 | { |
| 24 | s_pSharedTrayController = new CTrayIconController(); |
| 25 | } |
| 26 | return s_pSharedTrayController; |
| 27 | } |
| 28 | |
| 29 | CTrayIconController::CTrayIconController() |
| 30 | : BaseClass() |
nothing calls this directly
no outgoing calls
no test coverage detected