X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c4ec0ce8205de4659f1e52d16480b5c025ebc41e..640a1b84741ec3993707c36426cd50a79b5639ae:/include/wx/palmos/prefconf.h diff --git a/include/wx/palmos/prefconf.h b/include/wx/palmos/prefconf.h index ba756045c2..537808c4c4 100644 --- a/include/wx/palmos/prefconf.h +++ b/include/wx/palmos/prefconf.h @@ -6,12 +6,16 @@ // Created: 28.12.2004 // RCS-ID: $Id$ // Copyright: (c) Wlodzimierz Skiba -// License: wxWindows licence +// Licence: wxWindows licence /////////////////////////////////////////////////////////////////////////////// #ifndef _PREFCONF_H_ #define _PREFCONF_H_ +#include "wx/defs.h" + +#if wxUSE_CONFIG + // ---------------------------------------------------------------------------- // wxPrefConfig // ---------------------------------------------------------------------------- @@ -67,9 +71,11 @@ protected: // implement read/write methods virtual bool DoReadString(const wxString& key, wxString *pStr) const; virtual bool DoReadLong(const wxString& key, long *plResult) const; + virtual bool DoReadBinary(const wxString& key, wxMemoryBuffer *buf) const; virtual bool DoWriteString(const wxString& key, const wxString& szValue); virtual bool DoWriteLong(const wxString& key, long lValue); + virtual bool DoWriteBinary(const wxString& key, const wxMemoryBuffer& buf); private: // current path (not '/' terminated) @@ -81,9 +87,10 @@ private: // current group modified ? bool m_modGroup; - DECLARE_NO_COPY_CLASS(wxPrefConfig) + wxDECLARE_NO_COPY_CLASS(wxPrefConfig); DECLARE_ABSTRACT_CLASS(wxPrefConfig) }; -#endif // _PREFCONF_H_ +#endif // wxUSE_CONFIG +#endif // _PREFCONF_H_