diff --git a/include/tools/pathTools.h b/include/tools/pathTools.h index 19c843321..37ab6fd2b 100644 --- a/include/tools/pathTools.h +++ b/include/tools/pathTools.h @@ -22,6 +22,10 @@ #include +#ifdef _WIN32 +std::string WideToUtf8(const std::wstring& wstr); +std::wstring Utf8ToWide(const std::string& str); +#endif bool isRelativePath(const std::string& path); std::string computeAbsolutePath(const std::string& path, const std::string& relativePath); std::string computeRelativePath(const std::string& path, const std::string& absolutePath);