]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/filesys.h
implemented wxMemoryFSHandler::FindFirst/Next()
[wxWidgets.git] / interface / wx / filesys.h
index a9b1aa99c42cf82aa720a2e6d37b8c2717329247..4620a9825ece878a4d32b0fadb3af8d7701c653d 100644 (file)
@@ -131,7 +131,7 @@ public:
     /**
         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
@@ -224,10 +224,14 @@ public:
             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& anchor, wxDateTime modif);
+             const wxString& anchor,
+             wxDateTime modif);
 
     /**
         Detaches the stream from the wxFSFile object. That is, the
@@ -409,7 +413,7 @@ public:
         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.