mirror of
https://github.com/zs-yg/kortapp-z.git
synced 2025-12-06 16:10:42 +08:00
添加文本转换器代码
This commit is contained in:
14
others/C++/text converter/include/Utils.hpp
Normal file
14
others/C++/text converter/include/Utils.hpp
Normal file
@@ -0,0 +1,14 @@
|
||||
#ifndef UTILS_HPP
|
||||
#define UTILS_HPP
|
||||
|
||||
#include <memory>
|
||||
#include "Converter.hpp"
|
||||
#include "BinaryConverter.hpp"
|
||||
#include "HexConverter.hpp"
|
||||
|
||||
class Utils {
|
||||
public:
|
||||
static std::unique_ptr<Converter> createConverter(int type);
|
||||
};
|
||||
|
||||
#endif // UTILS_HPP
|
||||
Reference in New Issue
Block a user