Example: tag contains \<FONT SIZE=+2 COLOR="#000000"\>.
Call to tag.GetAllParams() would return @c 'SIZE=+2 COLOR="#000000"'.
*/
- const wxString GetAllParams() const;
+ wxString GetAllParams() const;
/**
Returns beginning position of the text @e between this tag and paired
*/
bool HasParam(const wxString& par) const;
+ //@{
/**
This method scans the given parameter. Usage is exactly the same as sscanf's
usage except that you don't pass a string but a parameter name as the first
@param value
pointer to a variable to store the value in
*/
- wxString ScanParam(const wxString& par, const wxChar* format, void* value) const;
+ int ScanParam(const wxString& par, const wchar_t* format, void* value) const;
+ int ScanParam(const wxString& par, const char* format, void* value) const;
+ //@}
};