| 24 | QString LibQNapi::appExecutableDir = ""; |
| 25 | |
| 26 | void LibQNapi::init(const QString& appExecutablePath) { |
| 27 | LibQNapi::appExecutableFilePath = |
| 28 | QFileInfo(appExecutablePath).absoluteFilePath(); |
| 29 | LibQNapi::appExecutableDir = |
| 30 | QFileInfo(appExecutableFilePath).absoluteDir().path(); |
| 31 | } |
| 32 | |
| 33 | QString LibQNapi::version() { return QString(QNAPI_VERSION); } |
| 34 |
nothing calls this directly
no outgoing calls
no test coverage detected