Choreonoid  1.1
Utf8.h
説明を見る。
1 
6 #ifndef CNOID_UTIL_UTF8_H_INCLUDED
7 #define CNOID_UTIL_UTF8_H_INCLUDED
8 
9 #include <string>
10 #include "exportdecl.h"
11 
12 namespace cnoid {
13 #ifdef _WIN32
14  CNOID_EXPORT const std::string toUtf8(const std::string& text);
15  CNOID_EXPORT const std::string fromUtf8(const std::string& text);
16  CNOID_EXPORT const std::string toUtf8(const char* text);
17  CNOID_EXPORT const std::string fromUtf8(const char* text);
18 #else
19  inline const std::string& toUtf8(const std::string& text) { return text; }
20  inline const std::string& fromUtf8(const std::string& text) { return text; }
21  inline const std::string toUtf8(const char* text) { return text; }
22  inline const std::string fromUtf8(const char* text) { return text; }
23  //inline std::string toUtf8(const std::string& text) { return text; }
24  //inline std::string fromUtf8(const std::string& text) { return text; }
25 #endif
26 }
27 
28 #endif