Guitar
wstring.h
Go to the documentation of this file.
1 
2 #ifndef _WIN32
3 #error This header is only for Windows. If you want to use it on other platforms, please implement the conversion functions for that platform.
4 #endif
5 
6 
7 #ifndef WSTRING_H
8 #define WSTRING_H
9 
10 #include <string>
11 
12 namespace misc {
13 
14 std::wstring convert_str_to_wstr(std::string const &str);
15 std::string convert_wstr_to_str(std::wstring const &str);
16 
17 }
18 
19 #endif // WSTRING_H
Definition: misc.h:20
std::string convert_wstr_to_str(std::wstring const &str)
Definition: wstring.cpp:16
std::wstring convert_str_to_wstr(std::string const &str)
Definition: wstring.cpp:4