mirror of
https://github.com/LongSoft/UEFITool.git
synced 2024-11-22 16:08:23 +08:00
21 lines
279 B
C
21 lines
279 B
C
|
#ifndef KAITAI_STRUCT_H
|
||
|
#define KAITAI_STRUCT_H
|
||
|
|
||
|
#include "kaitaistream.h"
|
||
|
|
||
|
namespace kaitai {
|
||
|
|
||
|
class kstruct {
|
||
|
public:
|
||
|
kstruct(kstream *_io) { m__io = _io; }
|
||
|
virtual ~kstruct() {}
|
||
|
protected:
|
||
|
kstream *m__io;
|
||
|
public:
|
||
|
kstream *_io() { return m__io; }
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|