| 157 | } |
| 158 | |
| 159 | Plugin * |
| 160 | Plugin::getDefaultPlugin() |
| 161 | { |
| 162 | if (m_default == nullptr) { |
| 163 | m_default = new Plugin( |
| 164 | "default", |
| 165 | QCoreApplication::applicationName().toStdString(), |
| 166 | "Default plugin", |
| 167 | nullptr); |
| 168 | m_default->m_version = SIGDIGGER_VERSION_STRING; |
| 169 | } |
| 170 | |
| 171 | return m_default; |
| 172 | } |
| 173 | |
| 174 | // Implementation |
| 175 | Plugin::Plugin() |
nothing calls this directly
no outgoing calls
no test coverage detected