#ifndef _PREFCONF_H_
#define _PREFCONF_H_
+#include "wx/defs.h"
+
+#if wxUSE_CONFIG
+
// ----------------------------------------------------------------------------
// wxPrefConfig
// ----------------------------------------------------------------------------
// 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:
// current path (not '/' terminated)
// current group modified ?
bool m_modGroup;
- DECLARE_NO_COPY_CLASS(wxPrefConfig)
+ wxDECLARE_NO_COPY_CLASS(wxPrefConfig);
DECLARE_ABSTRACT_CLASS(wxPrefConfig)
};
-#endif // _PREFCONF_H_
+#endif // wxUSE_CONFIG
+#endif // _PREFCONF_H_