| 183 | QString QNapi::error() { return errorMsg; } |
| 184 | |
| 185 | QStringList QNapi::listLoadedEngines() const { |
| 186 | QStringList list; |
| 187 | foreach (QSharedPointer<SubtitleDownloadEngine> e, enginesList) { |
| 188 | list << e->meta().name(); |
| 189 | } |
| 190 | return list; |
| 191 | } |
| 192 | |
| 193 | QSharedPointer<SubtitleDownloadEngine> QNapi::engineByName(QString name) const { |
| 194 | foreach (QSharedPointer<SubtitleDownloadEngine> e, enginesList) { |
nothing calls this directly
no outgoing calls
no test coverage detected