Files
kortapp-z/others/C++/text converter/include/BinaryConverter.hpp
2025-07-07 16:52:56 +08:00

15 lines
329 B
C++

#ifndef BINARYCONVERTER_HPP
#define BINARYCONVERTER_HPP
#include "Converter.hpp"
#include <string>
#include <bitset>
class BinaryConverter : public Converter {
public:
std::string convert(const std::string& input) override;
std::string getName() const override { return "二进制"; }
};
#endif // BINARYCONVERTER_HPP