X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8907154c1a8a6882c6797d1f16393ddfb23e7f3a..9d5507f7a2701395e1d5c121bd877bb9066ee6ea:/src/palmos/prefconf.cpp diff --git a/src/palmos/prefconf.cpp b/src/palmos/prefconf.cpp index b8a029f7b3..5347007980 100644 --- a/src/palmos/prefconf.cpp +++ b/src/palmos/prefconf.cpp @@ -82,6 +82,7 @@ know structures of Preferences of other non wxW applications. // ---------------------------------------------------------------------------- // ctor/dtor // ---------------------------------------------------------------------------- +IMPLEMENT_ABSTRACT_CLASS(wxPrefConfig, wxConfigBase) wxPrefConfig::wxPrefConfig(const wxString& appName, const wxString& vendorName, const wxString& strLocal, const wxString& strGlobal, @@ -177,6 +178,12 @@ bool wxPrefConfig::DoReadLong(const wxString& key, long *plResult) const return false; } +bool DoReadBinary(const wxString& key, wxMemoryBuffer *buf) const +{ + /* TODO */ + return false; +} + bool wxPrefConfig::DoWriteString(const wxString& key, const wxString& szValue) { /* TODO */ @@ -189,6 +196,12 @@ bool wxPrefConfig::DoWriteLong(const wxString& key, long lValue) return false; } +bool DoWriteBinary(const wxString& key, const wxMemoryBuffer& buf) +{ + /* TODO */ + return false; +} + // ---------------------------------------------------------------------------- // renaming // ----------------------------------------------------------------------------