]> git.mxchange.org Git - simgear.git/blobdiff - simgear/io/sg_file.hxx
Use the new SGPath::create_dir function
[simgear.git] / simgear / io / sg_file.hxx
index 88ecf1e0dc654be16c929cb282d88d929ff76515..ab3f7be0d061f2c134c6fbebcb3d3a1f11aefaab 100644 (file)
@@ -4,7 +4,7 @@
 
 // Written by Curtis Olson, started November 1999.
 //
-// Copyright (C) 1999  Curtis L. Olson - curt@flightgear.org
+// Copyright (C) 1999  Curtis L. Olson - http://www.flightgear.org/~curt
 //
 // This program is free software; you can redistribute it and/or
 // modify it under the terms of the GNU General Public License as
@@ -54,6 +54,7 @@ class SGFile : public SGIOChannel {
 
     string file_name;
     int fp;
+    bool eof_flag;
 
 public:
 
@@ -89,6 +90,9 @@ public:
 
     /** @return the name of the file being manipulated. */
     inline string get_file_name() const { return file_name; }
+
+    /** @return true of eof conditions exists */
+    inline bool eof() const { return eof_flag; };
 };