| 1116 | } |
| 1117 | |
| 1118 | bool BaseApplication::isRunning() |
| 1119 | { |
| 1120 | auto app = dynamic_cast<QtSingleApplication*>(this->getQApplication()); |
| 1121 | |
| 1122 | if (nullptr != app) |
| 1123 | app->isRunning(); |
| 1124 | |
| 1125 | mitkThrow() << "Method not implemented."; |
| 1126 | } |
| 1127 | |
| 1128 | void BaseApplication::sendMessage(const QByteArray msg) |
| 1129 | { |
no test coverage detected