]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/palmos/prefconf.h
do platform-specific checks after ensuring that the symbols we use are defined; extra...
[wxWidgets.git] / include / wx / palmos / prefconf.h
index 59f99cd160256e2bea0e2a5c8c1b98ca2fb64b31..1ca9a013ee70f4b87ab3d2d24d92fd26b11ff71a 100644 (file)
 #ifndef _PREFCONF_H_
 #define _PREFCONF_H_
 
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-#pragma interface "prefconf.h"
-#endif
-
 // ----------------------------------------------------------------------------
 // wxPrefConfig
 // ----------------------------------------------------------------------------
@@ -71,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;
 
@@ -88,6 +82,9 @@ private:
 
   // current group modified ?
   bool m_modGroup;
+
+  DECLARE_NO_COPY_CLASS(wxPrefConfig)
+  DECLARE_ABSTRACT_CLASS(wxPrefConfig)
 };
 
 #endif // _PREFCONF_H_