]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msdos/mimetype.h
Add support for elements preceding the document node in wxXML.
[wxWidgets.git] / include / wx / msdos / mimetype.h
index fd8123844f2182b9e790a8539e21d0556c4fd001..39a6ac6041d88e67f1e34291748591c7a577d134 100644 (file)
@@ -1,5 +1,5 @@
 /////////////////////////////////////////////////////////////////////////////
-// Name:        wx/mac/mimetype.h
+// Name:        wx/msdos/mimetype.h
 // Purpose:     classes and functions to manage MIME types
 // Author:      Vadim Zeitlin
 // Modified by:
@@ -20,7 +20,7 @@ class wxMimeTypesManagerImpl
 {
 public :
     wxMimeTypesManagerImpl() { }
+
     // load all data into memory - done when it is needed for the first time
     void Initialize(int mailcapStyles = wxMAILCAP_STANDARD,
                     const wxString& extraDir = wxEmptyString);
@@ -35,10 +35,6 @@ public :
 
     size_t EnumAllFileTypes(wxArrayString& mimetypes);
 
-    // this are NOPs under MacOS
-    bool ReadMailcap(const wxString& WXUNUSED(filename), bool WXUNUSED(fallback) = TRUE) { return TRUE; }
-    bool ReadMimeTypes(const wxString& WXUNUSED(filename)) { return TRUE; }
-
     void AddFallback(const wxFileTypeInfo& ft) { m_fallbacks.Add(ft); }
 
     // create a new filetype association
@@ -62,7 +58,7 @@ public:
     // index 1 the type / * match
     // if built with GetFileTypeFromExtension, index 0 has the mimetype for
     // the first extension found, index 1 for the second and so on
-    
+
     void Init(wxMimeTypesManagerImpl *manager, size_t index)
     { m_manager = manager; m_index.Add(index); }
 
@@ -103,7 +99,7 @@ public:
  private:
     // helper function
     bool GetCommand(wxString *command, const char *verb) const;
-    
+
     wxMimeTypesManagerImpl *m_manager;
     wxArrayInt              m_index; // in the wxMimeTypesManagerImpl arrays
     wxString m_strFileType, m_ext;