#include "path.h"

#include "app.h"
#include "form.h"

IMPLEMENT_APP(App);

bool App::OnInit()
{

  Form *main = new Form(wxString::FromUTF8("wx Tutorial!"), 
			wxDefaultPosition, wxSize(1024,550));

  main->Show();

  SetTopWindow(main);
  return true;
}