X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e0a4029251c1d80d50f9cb0bd152d1fca7914bc4..f321d0bc0caf4d78ccc5426e926fc25c46297439:/demos/life/dialogs.h diff --git a/demos/life/dialogs.h b/demos/life/dialogs.h index 95c266eb83..5a44246c90 100644 --- a/demos/life/dialogs.h +++ b/demos/life/dialogs.h @@ -12,24 +12,6 @@ #ifndef _LIFE_DIALOGS_H_ #define _LIFE_DIALOGS_H_ -#ifdef __GNUG__ - #pragma interface "dialogs.h" -#endif - -// for compilers that support precompilation, includes "wx/wx.h" -#include "wx/wxprec.h" - -#ifdef __BORLANDC__ - #pragma hdrstop -#endif - -// for all others, include the necessary headers -#ifndef WX_PRECOMP - #include "wx/wx.h" -#endif - -#include "wx/spinctrl.h" - #include "life.h" #include "game.h" @@ -43,16 +25,16 @@ class LifeSamplesDialog : public wxDialog public: // ctor and dtor LifeSamplesDialog(wxWindow *parent); - ~LifeSamplesDialog(); + virtual ~LifeSamplesDialog(); // members - const LifeShape& GetShape(); + const LifePattern& GetPattern(); // event handlers void OnListBox(wxCommandEvent &event); private: - // any class wishing to process wxWindows events must use this macro + // any class wishing to process wxWidgets events must use this macro DECLARE_EVENT_TABLE() int m_value; @@ -73,4 +55,5 @@ public: LifeAboutDialog(wxWindow *parent); }; + #endif // _LIFE_DIALOGS_H_