]> git.tdb.fi Git - libs/datafile.git/blobdiff - source/input.h
Some more code reformatting
[libs/datafile.git] / source / input.h
index ad921ec62963883da68a66092b740b7256553187..e5748662d5a899b9f5b4b6201c69687c084da401 100644 (file)
@@ -14,16 +14,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