// License: 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"
// ----------------------------------------------------------------------------
// ctor/dtor
// ----------------------------------------------------------------------------
+IMPLEMENT_ABSTRACT_CLASS(wxPrefConfig, wxConfigBase)
wxPrefConfig::wxPrefConfig(const wxString& appName, const wxString& vendorName,
const wxString& strLocal, const wxString& strGlobal,
return false;
}
+bool DoReadBinary(const wxString& key, wxMemoryBuffer *buf) const
+{
+ /* TODO */
+ return false;
+}
+
bool wxPrefConfig::DoWriteString(const wxString& key, const wxString& szValue)
{
/* TODO */
return false;
}
+bool DoWriteBinary(const wxString& key, const wxMemoryBuffer& buf)
+{
+ /* TODO */
+ return false;
+}
+
// ----------------------------------------------------------------------------
// renaming
// ----------------------------------------------------------------------------