X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e273151278d28cceefe6eee8c49bc6915306805d..74a8f67d96591cec101def2a7d47c64072aff7fd:/src/palmos/prefconf.cpp diff --git a/src/palmos/prefconf.cpp b/src/palmos/prefconf.cpp index bcd99bfe3e..d344e0333a 100644 --- a/src/palmos/prefconf.cpp +++ b/src/palmos/prefconf.cpp @@ -6,13 +6,9 @@ // Created: 28.12.2004 // RCS-ID: $Id$ // Copyright: (c) Wlodzimierz Skiba -// License: wxWindows licence +// Licence: wxWindows licence /////////////////////////////////////////////////////////////////////////////// -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) -#pragma implementation "prefconf.h" -#endif - // For compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" @@ -86,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, @@ -181,6 +178,14 @@ bool wxPrefConfig::DoReadLong(const wxString& key, long *plResult) const return false; } +#if wxUSE_BASE64 +bool wxPrefConfig::DoReadBinary(const wxString& key, wxMemoryBuffer *buf) const +{ + /* TODO */ + return false; +} +#endif // wxUSE_BASE64 + bool wxPrefConfig::DoWriteString(const wxString& key, const wxString& szValue) { /* TODO */ @@ -193,6 +198,14 @@ bool wxPrefConfig::DoWriteLong(const wxString& key, long lValue) return false; } +#if wxUSE_BASE64 +bool wxPrefConfig::DoWriteBinary(const wxString& key, const wxMemoryBuffer& buf) +{ + /* TODO */ + return false; +} +#endif // wxUSE_BASE64 + // ---------------------------------------------------------------------------- // renaming // ----------------------------------------------------------------------------