添加字符串替换文件类,更新配置以支持字符串替换文件加载,修改CMake配置以包含新文件
This commit is contained in:
8
string_replace_file.hpp
Normal file
8
string_replace_file.hpp
Normal file
@@ -0,0 +1,8 @@
|
||||
#include <unordered_map>
|
||||
#include <string>
|
||||
|
||||
class StringReplaceFile {
|
||||
public:
|
||||
std::unordered_map<std::string, std::string> messages;
|
||||
bool Load(std::string file);
|
||||
};
|
||||
Reference in New Issue
Block a user