#include "wx/string.h"
#include "wx/dynarray.h"
+class wxMimeTypeCmnModule;
+
// This class holds information about a given "file type". File type is the
// same as MIME type under Unix, but under Windows it corresponds more to an
// extension than to MIME type (in fact, several extensions may correspond to a
// parameters are unchanged)
// return the MIME type for this file type
bool GetMimeType(wxString *mimeType) const;
+ bool GetMimeTypes(wxArrayString& mimeTypes) const;
// fill passed in array with all extensions associated with this file
// type
bool GetExtensions(wxArrayString& extensions);
// if m_impl is NULL, create one
void EnsureImpl();
+
+ friend class wxMimeTypeCmnModule;
};