]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/ffile.h
added convenient wxON_BLOCK_EXIT_THISn() macros wrapping wxON_BLOCK_EXIT_OBJn(*this)
[wxWidgets.git] / interface / ffile.h
index b960defa5311dcda83411101e59d2270e20c6494..4f97fa6aea8e95173d35cbbfaa2bafe49539d52b 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
 {
@@ -28,7 +27,7 @@ public:
     //@{
     /**
         Opens a file with the given file pointer, which has already been opened.
-        
+
         @param filename
             The filename.
         @param mode
@@ -78,17 +77,17 @@ public:
         read.
         Also note that this method may only be called for opened files and may crash if
         the file is not opened.
-        
+
         @see IsOpened()
     */
-    bool Eof();
+    bool Eof() const;
 
     /**
         Returns @true if an error has occurred on this file, similar to the standard
         @c ferror() function.
         Please note that this method may only be called for opened files and may crash
         if the file is not opened.
-        
+
         @see IsOpened()
     */
 
@@ -101,23 +100,23 @@ 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.
-        
+
         @param filename
             The filename.
         @param mode
@@ -128,12 +127,12 @@ public:
     /**
         Reads the specified number of bytes into a buffer, returning the actual number
         read.
-        
+
         @param buffer
             A buffer to receive the data.
         @param count
             The number of bytes to read.
-        
+
         @returns The number of bytes read.
     */
     size_t Read(void* buffer, size_t count);
@@ -141,20 +140,20 @@ public:
     /**
         )
         Reads the entire contents of the file into a string.
-        
+
         @param str
             String to read data into.
         @param conv
             Conversion object to use in Unicode build; by default supposes
             that file contents is encoded in UTF-8.
-        
+
         @returns @true if file was read successfully, @false otherwise.
     */
     bool ReadAll(wxString* str);
 
     /**
         Seeks to the specified position and returns @true on success.
-        
+
         @param ofs
             Offset to seek to.
         @param mode
@@ -166,7 +165,7 @@ public:
         Moves the file pointer to the specified number of bytes before the end of the
         file
         and returns @true on success.
-        
+
         @param ofs
             Number of bytes before the end of the file.
     */
@@ -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;
 };
+