mirror of
https://gitee.com/fasiondog/hikyuu.git
synced 2024-12-04 12:57:45 +08:00
19 lines
349 B
C++
19 lines
349 B
C++
/*
|
|
* Copyright(C) 2021 hikyuu.org
|
|
*
|
|
* Create on: 2021-05-02
|
|
* Author: fasiondog
|
|
*/
|
|
|
|
#include "mo.h"
|
|
|
|
namespace hku {
|
|
|
|
std::unordered_map<std::string, moFileLib::moFileReader> MOHelper::ms_dict;
|
|
|
|
void MOHelper::init() {
|
|
ms_dict["zh_cn"] = moFileLib::moFileReader();
|
|
ms_dict["zh_cn"].ReadFile("i8n/zh_CN.mo");
|
|
}
|
|
|
|
} // namespace hku
|