]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/filesys.h
Forgot to commit
[wxWidgets.git] / interface / wx / filesys.h
index c9d534e86aa8ac5b74cf9bd9fa9cfdd2f335591b..4620a9825ece878a4d32b0fadb3af8d7701c653d 100644 (file)
@@ -19,7 +19,6 @@ enum wxFileSystemOpenFlags
 
 /**
     @class wxFileSystem
 
 /**
     @class wxFileSystem
-    @wxheader{filesys.h}
 
     This class provides an interface for opening files on different file systems.
     It can handle absolute and/or local filenames.
 
     This class provides an interface for opening files on different file systems.
     It can handle absolute and/or local filenames.
@@ -132,7 +131,7 @@ public:
     /**
         Returns the actual path (set by wxFileSystem::ChangePathTo).
     */
     /**
         Returns the actual path (set by wxFileSystem::ChangePathTo).
     */
-    wxString GetPath();
+    wxString GetPath() const;
 
     /**
         This static function returns @true if there is a registered handler which can
 
     /**
         This static function returns @true if there is a registered handler which can
@@ -171,7 +170,6 @@ public:
 
 /**
     @class wxFSFile
 
 /**
     @class wxFSFile
-    @wxheader{filesys.h}
 
     This class represents a single file opened by wxFileSystem.
     It provides more information than wxWindow's input stream
 
     This class represents a single file opened by wxFileSystem.
     It provides more information than wxWindow's input stream
@@ -226,10 +224,14 @@ public:
             not be empty in this case).
         @param anchor
             Anchor. See GetAnchor() for details.
             not be empty in this case).
         @param anchor
             Anchor. See GetAnchor() for details.
+        @param modif
+            Modification date and time for this file.
     */
     */
-    wxFSFile(wxInputStream stream, const wxString& loc,
+    wxFSFile(wxInputStream stream,
+             const wxString& location,
              const wxString& mimetype,
              const wxString& mimetype,
-             const wxString& anchor, wxDateTime modif);
+             const wxString& anchor,
+             wxDateTime modif);
 
     /**
         Detaches the stream from the wxFSFile object. That is, the
 
     /**
         Detaches the stream from the wxFSFile object. That is, the
@@ -300,7 +302,6 @@ public:
 
 /**
     @class wxFileSystemHandler
 
 /**
     @class wxFileSystemHandler
-    @wxheader{filesys.h}
 
     Classes derived from wxFileSystemHandler are used to access virtual file systems.
 
 
     Classes derived from wxFileSystemHandler are used to access virtual file systems.
 
@@ -412,7 +413,7 @@ public:
         GetMimeTypeFromExt("index.htm") == "text/html"
         @endcode
     */
         GetMimeTypeFromExt("index.htm") == "text/html"
         @endcode
     */
-    wxString GetMimeTypeFromExt(const wxString& location);
+    static wxString GetMimeTypeFromExt(const wxString& location);
 
     /**
         Returns the protocol string extracted from @a location.
 
     /**
         Returns the protocol string extracted from @a location.