X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Finput.h;h=e5748662d5a899b9f5b4b6201c69687c084da401;hb=215e719d0ef85f748898660d15d01e77ac551de9;hp=e03dea1e839714e23416b8fed7fea7cb68f8ed97;hpb=8ff59df1f2e603557eceacbc81a8dc44de051dae;p=libs%2Fdatafile.git diff --git a/source/input.h b/source/input.h index e03dea1..e574866 100644 --- a/source/input.h +++ b/source/input.h @@ -7,23 +7,25 @@ Distributed under the LGPL #ifndef MSP_DATAFILE_INPUT_H_ #define MSP_DATAFILE_INPUT_H_ -#include +#include namespace Msp { namespace DataFile { class Input { +private: + IO::Base ∈ + unsigned line; + int next; + public: - Input(std::istream &); + Input(IO::Base &); + int get(); int peek(); unsigned get_line_number() const { return line; } - operator bool() const { return in; } -private: - std::istream ∈ - unsigned line; - int next; + operator bool() const; }; } // namespace DataFile