]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/palmos/prefconf.h
no changes, just remove an extra space (see #10560)
[wxWidgets.git] / include / wx / palmos / prefconf.h
index 59f99cd160256e2bea0e2a5c8c1b98ca2fb64b31..6f7a5af4de92dd0588c87df234c1d67a6d217491 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;
+
+  wxDECLARE_NO_COPY_CLASS(wxPrefConfig);
+  DECLARE_ABSTRACT_CLASS(wxPrefConfig)
 };
 
 #endif // _PREFCONF_H_