#pragma once #include #include #include namespace uns { class OCRCharset { private: static std::map en_charmap; static std::map ch_en_charmap; public: OCRCharset() = delete; OCRCharset(const OCRCharset&) = delete; public: static std::wstring GetChar(int index); static std::wstring GetString(const std::vector& indexs); }; }