X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8907154c1a8a6882c6797d1f16393ddfb23e7f3a..19c4d91638c2546630c4427e39c02f5380a8bb87:/include/wx/palmos/prefconf.h diff --git a/include/wx/palmos/prefconf.h b/include/wx/palmos/prefconf.h index e5f7f4104a..1ca9a013ee 100644 --- a/include/wx/palmos/prefconf.h +++ b/include/wx/palmos/prefconf.h @@ -67,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; @@ -84,6 +82,9 @@ private: // current group modified ? bool m_modGroup; + + DECLARE_NO_COPY_CLASS(wxPrefConfig) + DECLARE_ABSTRACT_CLASS(wxPrefConfig) }; #endif // _PREFCONF_H_