]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/file.h
Split wxDataViewVirtualModel fork wxDataViewIndexModel to make the code clearer and...
[wxWidgets.git] / interface / file.h
index 898d0af608edff19d1672c93c21405c8b2bc6f77..7ece7ce26e0cb61fa699881770a0ceae9c381193 100644 (file)
@@ -1,6 +1,6 @@
 /////////////////////////////////////////////////////////////////////////////
 // Name:        file.h
-// Purpose:     documentation for wxTempFile class
+// Purpose:     interface of wxTempFile
 // Author:      wxWidgets team
 // RCS-ID:      $Id$
 // Licence:     wxWindows license
@@ -119,6 +119,7 @@ public:
 };
 
 
+
 /**
     @class wxFile
     @wxheader{file.h}
@@ -146,7 +147,7 @@ public:
     /**
         Associates the file with the given file descriptor, which has already been
         opened.
-        
+
         @param filename
             The filename.
         @param mode
@@ -164,7 +165,7 @@ public:
 
     /**
         Destructor will close the file.
-        @b NB: it is not virtual so you should not use wxFile polymorphically.
+        @note it is not virtual so you should not use wxFile polymorphically.
     */
     ~wxFile();
 
@@ -253,7 +254,7 @@ public:
 
     /**
         Opens the file, returning @true if successful.
-        
+
         @param filename
             The filename.
         @param mode
@@ -274,12 +275,12 @@ public:
 
     /**
         Seeks to the specified position.
-        
+
         @param ofs
             Offset to seek to.
         @param mode
             One of wxFromStart, wxFromEnd, wxFromCurrent.
-        
+
         @returns The actual offset position achieved, or wxInvalidOffset on
                  failure.
     */
@@ -290,10 +291,10 @@ public:
         Moves the file pointer to the specified number of bytes relative to the end of
         the file. For example, @c SeekEnd(-5) would position the pointer 5
         bytes before the end.
-        
+
         @param ofs
             Number of bytes before the end of the file.
-        
+
         @returns The actual offset position achieved, or wxInvalidOffset on
                  failure.
     */
@@ -321,3 +322,4 @@ public:
     */
     int fd() const;
 };
+