mirror of
https://github.com/zs-yg/kortapp-z.git
synced 2025-12-07 00:20:43 +08:00
14 lines
262 B
C++
14 lines
262 B
C++
#ifndef CONVERTER_HPP
|
|
#define CONVERTER_HPP
|
|
|
|
#include <string>
|
|
|
|
class Converter {
|
|
public:
|
|
virtual ~Converter() = default;
|
|
virtual std::string convert(const std::string& input) = 0;
|
|
virtual std::string getName() const = 0;
|
|
};
|
|
|
|
#endif // CONVERTER_HPP
|