#ifndef _PREFCONF_H_
#define _PREFCONF_H_
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-#pragma interface "prefconf.h"
-#endif
-
// ----------------------------------------------------------------------------
// wxPrefConfig
// ----------------------------------------------------------------------------
virtual bool DoWriteLong(const wxString& key, long lValue);
private:
- // no copy ctor/assignment operator
- wxPrefConfig(const wxPrefConfig&);
- wxPrefConfig& operator=(const wxPrefConfig&);
-
// current path (not '/' terminated)
wxString m_strPath;
// current group modified ?
bool m_modGroup;
+
+ DECLARE_NO_COPY_CLASS(wxPrefConfig)
+ DECLARE_ABSTRACT_CLASS(wxPrefConfig)
};
#endif // _PREFCONF_H_