X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;ds=sidebyside;f=source%2Finput.h;h=a9c96f48abce9cdf9e533e640f3913c8849e0d7f;hb=9fd9af66cf20cdc3d217f273835410eb2c8c362b;hp=9fa4b853a668640736fb4a37f97bf1c71ef23fd3;hpb=8e3fad222e174b7c659fd3d994d54314657ed989;p=libs%2Fdatafile.git diff --git a/source/input.h b/source/input.h index 9fa4b85..a9c96f4 100644 --- a/source/input.h +++ b/source/input.h @@ -9,13 +9,16 @@ namespace DataFile { class Input { private: - IO::Base ∈ + IO::Base *in; + IO::Base *compressed; unsigned line; int next; public: Input(IO::Base &); + ~Input(); + void set_decompress(); int get(); int peek(); unsigned get_line_number() const { return line; }