]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/ffile.h
revised base64.h;bitmap.h
[wxWidgets.git] / interface / ffile.h
index b960defa5311dcda83411101e59d2270e20c6494..10ee707a0cf7daf79324f2e2069cebf7da6311df 100644 (file)
@@ -1,6 +1,6 @@
 /////////////////////////////////////////////////////////////////////////////
 // Name:        ffile.h
-// Purpose:     documentation for wxFFile class
+// Purpose:     interface of wxFFile
 // Author:      wxWidgets team
 // RCS-ID:      $Id$
 // Licence:     wxWindows license
@@ -19,8 +19,7 @@
     @library{wxbase}
     @category{file}
 
-    @seealso
-    wxFFile::IsOpened
+    @see wxFFile::IsOpened
 */
 class wxFFile
 {
@@ -81,7 +80,7 @@ public:
         
         @see IsOpened()
     */
-    bool Eof();
+    bool Eof() const;
 
     /**
         Returns @true if an error has occurred on this file, similar to the standard
@@ -101,19 +100,19 @@ public:
     /**
         Returns the type of the file. Possible return values are:
     */
-    wxFileKind GetKind();
+    wxFileKind GetKind() const;
 
     /**
         Returns @true if the file is opened. Most of the methods of this class may
         only
         be used for an opened file.
     */
-    bool IsOpened();
+    bool IsOpened() const;
 
     /**
         Returns the length of the file.
     */
-    wxFileOffset Length();
+    wxFileOffset Length() const;
 
     /**
         Opens the file, returning @true if successful.
@@ -175,7 +174,7 @@ public:
     /**
         Returns the current position.
     */
-    wxFileOffset Tell();
+    wxFileOffset Tell() const;
 
     /**
         )
@@ -188,5 +187,6 @@ public:
     /**
         Returns the file pointer associated with the file.
     */
-    FILE* fp();
+    FILE* fp() const;
 };
+