Add missing function's declarations to convert path for windows.

This commit is contained in:
Matthieu Gautier 2020-01-13 16:51:48 +01:00
parent c5051b343e
commit 7c7e351d34
1 changed files with 4 additions and 0 deletions

View File

@ -22,6 +22,10 @@
#include <string> #include <string>
#ifdef _WIN32
std::string WideToUtf8(const std::wstring& wstr);
std::wstring Utf8ToWide(const std::string& str);
#endif
bool isRelativePath(const std::string& path); bool isRelativePath(const std::string& path);
std::string computeAbsolutePath(const std::string& path, const std::string& relativePath); std::string computeAbsolutePath(const std::string& path, const std::string& relativePath);
std::string computeRelativePath(const std::string& path, const std::string& absolutePath); std::string computeRelativePath(const std::string& path, const std::string& absolutePath);