#ifndef _PRIMER_EJEMPLO_H_
#define _PRIMER_EJEMPLO_H_

#include <wx/wx.h>

class MyApp : public wxApp 
{
public:
   virtual bool OnInit();
};

class MyFrame : public wxFrame
{
public:
   MyFrame(const wxString& title);
   void OnShow(wxCommandEvent& event);
   void OnExit(wxCommandEvent& event);
   
private:
   wxButton *btnShow;
   wxButton *btnExit;
   wxStaticText *label;

   DECLARE_EVENT_TABLE()
};

DECLARE_APP(MyApp)

#endif