X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Finput.h;h=9fa4b853a668640736fb4a37f97bf1c71ef23fd3;hb=19179a622c1de88de5ed7047643eec79f285bf2a;hp=ad921ec62963883da68a66092b740b7256553187;hpb=e26f7e98e5d8a5666192a43348b3ca7a35f6b860;p=libs%2Fdatafile.git diff --git a/source/input.h b/source/input.h index ad921ec..9fa4b85 100644 --- a/source/input.h +++ b/source/input.h @@ -1,9 +1,3 @@ -/* $Id$ - -This file is part of libmspdatafile -Copyright © 2006 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ #ifndef MSP_DATAFILE_INPUT_H_ #define MSP_DATAFILE_INPUT_H_ @@ -14,16 +8,18 @@ namespace DataFile { class Input { +private: + IO::Base ∈ + unsigned line; + int next; + public: Input(IO::Base &); + int get(); int peek(); unsigned get_line_number() const { return line; } operator bool() const; -private: - IO::Base ∈ - unsigned line; - int next; }; } // namespace DataFile