You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
521 B
24 lines
521 B
#pragma once
|
|
#include <fstream>
|
|
#include <functional>
|
|
#include <iostream>
|
|
#include <list>
|
|
#include <map>
|
|
#include <memory>
|
|
#include <set>
|
|
#include <sstream>
|
|
#include <string>
|
|
#include <vector>
|
|
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
|