mirror of
https://github.com/zs-yg/kortapp-z.git
synced 2025-12-06 16:10:42 +08:00
添加文本转换器代码
This commit is contained in:
13
others/C++/text converter/include/Base32Converter.hpp
Normal file
13
others/C++/text converter/include/Base32Converter.hpp
Normal file
@@ -0,0 +1,13 @@
|
||||
#ifndef BASE32CONVERTER_HPP
|
||||
#define BASE32CONVERTER_HPP
|
||||
|
||||
#include "Converter.hpp"
|
||||
#include <string>
|
||||
|
||||
class Base32Converter : public Converter {
|
||||
public:
|
||||
std::string convert(const std::string& input) override;
|
||||
std::string getName() const override { return "Base32"; }
|
||||
};
|
||||
|
||||
#endif // BASE32CONVERTER_HPP
|
||||
Reference in New Issue
Block a user