mirror of
https://github.com/zs-yg/kortapp-z.git
synced 2025-12-07 00:20:43 +08:00
15 lines
321 B
C++
15 lines
321 B
C++
#ifndef ROT13CONVERTER_HPP
|
|
#define ROT13CONVERTER_HPP
|
|
|
|
#include "Converter.hpp"
|
|
#include <string>
|
|
#include <cctype>
|
|
|
|
class ROT13Converter : public Converter {
|
|
public:
|
|
std::string convert(const std::string& input) override;
|
|
std::string getName() const override { return "ROT13"; }
|
|
};
|
|
|
|
#endif // ROT13CONVERTER_HPP
|