X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/23a59c2cbe8489445b9c26dee4a77e2d20a999c2..472eec8a0391538e4dcf7f7c6c4f4d44c8383616:/include/wx/palmos/prefconf.h diff --git a/include/wx/palmos/prefconf.h b/include/wx/palmos/prefconf.h index 59f99cd160..1ca9a013ee 100644 --- a/include/wx/palmos/prefconf.h +++ b/include/wx/palmos/prefconf.h @@ -12,10 +12,6 @@ #ifndef _PREFCONF_H_ #define _PREFCONF_H_ -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) -#pragma interface "prefconf.h" -#endif - // ---------------------------------------------------------------------------- // wxPrefConfig // ---------------------------------------------------------------------------- @@ -71,15 +67,13 @@ 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: - // no copy ctor/assignment operator - wxPrefConfig(const wxPrefConfig&); - wxPrefConfig& operator=(const wxPrefConfig&); - // current path (not '/' terminated) wxString m_strPath; @@ -88,6 +82,9 @@ private: // current group modified ? bool m_modGroup; + + DECLARE_NO_COPY_CLASS(wxPrefConfig) + DECLARE_ABSTRACT_CLASS(wxPrefConfig) }; #endif // _PREFCONF_H_