mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-06-24 15:32:07 +08:00
eff388b1b6
date: 2023-07-27T18:38:32
master commit: fa310d9e25
17 lines
236 B
C++
17 lines
236 B
C++
#ifndef KAITAI_CUSTOM_DECODER_H
|
|
#define KAITAI_CUSTOM_DECODER_H
|
|
|
|
#include <string>
|
|
|
|
namespace kaitai {
|
|
|
|
class custom_decoder {
|
|
public:
|
|
virtual ~custom_decoder() {};
|
|
virtual std::string decode(std::string src) = 0;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|