| 234 | } |
| 235 | |
| 236 | void InternalPlatform::Start(ctkPluginContext* context) |
| 237 | { |
| 238 | this->m_Context = context; |
| 239 | |
| 240 | m_ConsoleLog = m_Context->getProperty(ctkPluginFrameworkLauncher::PROP_CONSOLE_LOG).toBool(); |
| 241 | |
| 242 | OpenServiceTrackers(); |
| 243 | |
| 244 | this->InitializePluginPaths(); |
| 245 | |
| 246 | #ifdef BLUEBERRY_DEBUG_SMARTPOINTER |
| 247 | DebugUtil::RestoreState(m_UserPath); |
| 248 | #endif |
| 249 | |
| 250 | InitializeDebugFlags(); |
| 251 | this->m_Initialized = true; |
| 252 | } |
| 253 | |
| 254 | void InternalPlatform::Stop(ctkPluginContext* /*context*/) |
| 255 | { |
no test coverage detected