| 49 | namespace fs = std::filesystem; |
| 50 | |
| 51 | fs::path qstringToPath(const QString& path) |
| 52 | { |
| 53 | #if defined(FC_OS_WIN32) |
| 54 | return {path.toStdWString()}; |
| 55 | #else |
| 56 | return {path.toStdString()}; |
| 57 | #endif |
| 58 | } |
| 59 | |
| 60 | ApplicationDirectories::ApplicationDirectories(std::map<std::string,std::string> &config) |
| 61 | { |
no test coverage detected