#ifndef __EXAMPLE_CONTOUR_GUI__ #define __EXAMPLE_CONTOUR_GUI__ // ---------------------------------------------------------------------------- // wx headers inclusion. // For compilers that support precompilation, includes . // ---------------------------------------------------------------------------- #include #ifdef __BORLANDC__ #pragma hdrstop #endif #ifndef WX_PRECOMP #include #endif #include #include "wxContourMainFrame.h" /* eed class wxContourGUIExample : public wxFrame { public: // wxContourGUIExample(wxWindow *parent,wxString title); wxContourGUIExample(const wxString& title, const wxPoint& pos, const wxSize& size); void OnBtnRun(wxCommandEvent& event); private: wxStaticText * stResult; wxButton * btn; //DECLARE_CLASS(wxContourGUIExample) }; */ class wxTheApplication : public wxApp { public: bool OnInit(); private: static wxContourMainFrame * frame; }; #endif