#ifndef _APP_
#define _APP_

#ifdef __BORLANDC__
#pragma hdrstop
#endif

#include <wx/wx.h>

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

DECLARE_APP(App)

#endif