mirror of
https://github.com/zs-yg/kortapp-z.git
synced 2025-12-06 16:10:42 +08:00
14 lines
313 B
C++
14 lines
313 B
C++
#ifndef ASCII85CONVERTER_HPP
|
|
#define ASCII85CONVERTER_HPP
|
|
|
|
#include "Converter.hpp"
|
|
#include <string>
|
|
|
|
class Ascii85Converter : public Converter {
|
|
public:
|
|
std::string convert(const std::string& input) override;
|
|
std::string getName() const override { return "Ascii85"; }
|
|
};
|
|
|
|
#endif // ASCII85CONVERTER_HPP
|