31 std::istream* instream;
39 bool is_big_endian =
true;
43 bool use_jisx0213 =
false;
46 jis_enc(std::istream* instream);
51 virtual std::vector<found_string>* find() = 0;
55 void set_min_len(
size_t min_len);
63 void set_is_big_endian(
bool is_big_endian);
67 bool get_is_big_endian();
71 void set_use_jisx0213(
bool use_jisx0213);
75 bool get_use_jisx0213();
std::vector< uint8_t > data
The extracted string data.
Definition: jis_enc.h:23
off_t address
The offset of the beginning of the found string relative to the start of the stream.
Definition: jis_enc.h:19
Abstract class for JIS based encoding classes.
Definition: jis_enc.h:29
POD structure for containing a found string.
Definition: jis_enc.h:15