- bool SetValue(const char *szValue, const wxString& strValue);
- // return the string value
- bool QueryValue(const char *szValue, wxString& strValue) const;
+ bool SetValue(const wxChar *szValue, const wxString& strValue);
+ // retrieve the string value
+ bool QueryValue(const wxChar *szValue, wxString& strValue) const
+ { return QueryValue(szValue, strValue, FALSE); }
+ // retrieve raw string value
+ bool QueryRawValue(const wxChar *szValue, wxString& strValue) const
+ { return QueryValue(szValue, strValue, TRUE); }
+ // retrieve either raw or expanded string value
+ bool QueryValue(const wxChar *szValue, wxString& strValue, bool raw) const;