#pragma once #include #include #include #include #include #include #include #include #include #include namespace iflytop { using namespace std; class ZIconv { private: /* data */ public: static string utf8_to_gb2312(const string& utf8_str); static string toGB2312(const string& utf8_str) { return utf8_to_gb2312(utf8_str); } static string noChange(const string& utf8_str) { return utf8_str; } }; } // namespace iflytop