X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/5eb051a73b6e97d0da522f45d20bb86e1507f253..7ddb15416407390de67cc26b04e91ea99a521f57:/include/wx/private/markupparser.h diff --git a/include/wx/private/markupparser.h b/include/wx/private/markupparser.h index 400cbe9d3c..9ae44ac5e0 100644 --- a/include/wx/private/markupparser.h +++ b/include/wx/private/markupparser.h @@ -70,10 +70,15 @@ struct wxMarkupSpanAttributes // wxMarkupParserOutput: gathers the results of parsing markup. // ---------------------------------------------------------------------------- +// A class deriving directly from this one needs to implement all the pure +// virtual functions below but as the handling of all simple tags (bold, italic +// &c) is often very similar, it is usually more convenient to inherit from +// wxMarkupParserFontOutput defined in wx/private/markupparserfont.h instead. class wxMarkupParserOutput { public: wxMarkupParserOutput() { } + virtual ~wxMarkupParserOutput() { } // Virtual functions called by wxMarkupParser while parsing the markup.