This commit is contained in:
Your Name
2024-04-27 03:23:42 -05:00
parent b1c566e71e
commit fbbdf2c03c
315 changed files with 79358 additions and 3 deletions

16
third_party/kaitai/custom_decoder.h vendored Normal file
View File

@@ -0,0 +1,16 @@
#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