// Name: custclas.h
// Purpose: XML resources sample: A custom class to insert into a XRC file
// Author: Robert O'Connor (rob@medicalmnemonics.com), Vaclav Slavik
-// RCS-ID: $Id$
// Copyright: (c) Robert O'Connor and Vaclav Slavik
// Licence: wxWindows licence
//-----------------------------------------------------------------------------
#ifndef _CUSTCLAS_H_
#define _CUSTCLAS_H_
-//----------------------------------------------------------------------------------------
-// GCC interface
-//----------------------------------------------------------------------------------------
-
-#if defined(__GNUG__) && !defined(__APPLE__)
- #pragma interface "custclas.h"
-#endif
-
//----------------------------------------------------------------------------------------
// Headers
//----------------------------------------------------------------------------------------
class MyResizableListCtrl : public wxListCtrl
{
// Very helpful wxWidgets macro required for wxWidgets-RTTI tracing: By using this
- // you will see "Leaked one object of type myResizeableListCtrl" in the debug log,
+ // you will see "Leaked one object of type myResizableListCtrl" in the debug log,
// along with which line you if was created, but you forget to free the memory.
// NOTE: Using this REQUIRES a default constructor: that means either: giving a
// default value for all parameters in your constructor, or else having a dummy
const wxString &name = wxT("myResizableListCtrl")
);
- // Destuctor.
- ~MyResizableListCtrl();
+ // Destructor.
+ ~MyResizableListCtrl(){};
protected: