add dll version and its usage

This commit is contained in:
UnknownObject
2025-05-19 16:50:42 +08:00
parent b7d97547be
commit d070976d35
30 changed files with 9035 additions and 3 deletions
+22
View File
@@ -0,0 +1,22 @@
#pragma once
#include <map>
#include <string>
#include <vector>
namespace uns
{
class OCRCharset
{
private:
static std::map<int, std::wstring> en_charmap;
static std::map<int, std::wstring> ch_en_charmap;
public:
OCRCharset() = delete;
OCRCharset(const OCRCharset&) = delete;
public:
static std::wstring GetChar(int index);
static std::wstring GetString(const std::vector<int>& indexs);
};
}