Tyro/src/TyroApp.h

26 lines
611 B
C
Raw Normal View History

2015-03-30 14:50:10 -04:00
/***************************************************************
* Name: TyroApp.h
2015-03-30 14:50:10 -04:00
* Purpose: Defines Application Class
* Author: Timothy J Warren (tim@timshomepage.net)
2015-03-30 14:50:10 -04:00
* Created: 2015-03-30
* Copyright: Timothy J Warren (https://timshomepage.net)
* License:
**************************************************************/
#ifndef TYROAPP_H
#define TYROAPP_H
#include <wx/app.h>
2015-04-01 15:15:29 -04:00
#include <wx/debug.h>
2015-03-31 10:19:34 -04:00
#include <wx/aui/aui.h>
2015-03-30 14:50:10 -04:00
class TyroApp : public wxApp
{
friend class TyroFrame;
public:
virtual bool OnInit();
virtual int OnExit(wxCommandEvent &WXUNUSED(event));
2015-03-30 14:50:10 -04:00
};
#endif // TYROAPP_H