/////////////////////////////////////////////////////////////////////////////
// Name: fs_mem.h
-// Purpose: documentation for wxMemoryFSHandler class
+// Purpose: interface of wxMemoryFSHandler
// Author: wxWidgets team
// RCS-ID: $Id$
// Licence: wxWindows license
@library{wxbase}
@category{FIXME}
- @seealso
- wxMemoryFSHandler::AddFileWithMimeType
+ @see wxMemoryFSHandler::AddFileWithMimeType
*/
class wxMemoryFSHandler : public wxFileSystemHandler
{
The @a type argument is one of @c wxBITMAP_TYPE_XXX constants.
Note that you must use a @a type value (aka image format)
that wxWidgets can save (e.g. JPG, PNG, see wxImage
- documentation)!
-
+ documentation())!
+
@see AddFileWithMimeType()
*/
static void AddFile(const wxString& filename, wxImage& image,
Like AddFile(), but lets you explicitly
specify added file's MIME type. This version should be used whenever you know
the MIME type, because it makes accessing the files faster.
- This function is new since wxWidgets version 2.8.5
-
+
+ @since 2.8.5
+
@see AddFile()
*/
static void AddFileWithMimeType(const wxString& filename,
*/
static void RemoveFile(const wxString& filename);
};
+