// Modified by:
// Created: 01.02.01
// RCS-ID: $Id$
-// Copyright: (c) 1996-2000 wxWidgets team
+// Copyright: (c) 1996-2000 Vadim Zeitlin
// Licence: wxWindows licence
///////////////////////////////////////////////////////////////////////////////
#ifndef _WX_NOTEBOOK_H_BASE_
#define _WX_NOTEBOOK_H_BASE_
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
- #pragma interface "notebookbase.h"
-#endif
-
// ----------------------------------------------------------------------------
// headers
// ----------------------------------------------------------------------------
{
}
+ wxNotebookEvent(const wxNotebookEvent& event)
+ : wxBookCtrlBaseEvent(event)
+ {
+ }
+
+ virtual wxEvent *Clone() const { return new wxNotebookEvent(*this); }
+
private:
- DECLARE_DYNAMIC_CLASS_NO_COPY(wxNotebookEvent)
+ DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxNotebookEvent)
};
BEGIN_DECLARE_EVENT_TYPES()