/////////////////////////////////////////////////////////////////////////////
// Name: richtext/richtextxml.h
-// Purpose: documentation for wxRichTextXMLHandler class
+// Purpose: interface of wxRichTextXMLHandler
// Author: wxWidgets team
// RCS-ID: $Id$
// Licence: wxWindows license
functions directly.
@library{wxrichtext}
- @category{FIXME}
+ @category{richtext}
*/
class wxRichTextXMLHandler : public wxRichTextFileHandler
{
public:
/**
- , @b const wxString&@e ext = wxT("xml"), @b int@e type = wxRICHTEXT_TYPE_XML)
+ , wxString&@e ext = wxT("xml"), @b int@e type = wxRICHTEXT_TYPE_XML)
Constructor.
*/
- wxRichTextXMLHandler();
+ wxRichTextXMLHandler() const;
/**
Returns @true.
*/
- bool CanLoad();
+ bool CanLoad() const;
/**
Returns @true.
*/
- bool CanSave();
+ bool CanSave() const;
/**
Creates XML code for a given character or paragraph style.
*/
bool ImportXML(wxRichTextBuffer* buffer, wxXmlNode* node);
};
+