Tyro/src/TyroApp.h

28 lines
586 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_common.h"
2015-04-02 11:01:21 -04:00
2015-03-30 14:50:10 -04:00
#include <wx/app.h>
2015-04-01 15:15:29 -04:00
#include <wx/debug.h>
2015-03-30 14:50:10 -04:00
class TyroApp : public wxApp
{
2015-04-02 11:01:21 -04:00
friend class MainFrame;
public:
virtual bool OnInit();
virtual int OnExit();
private:
2015-03-30 14:50:10 -04:00
};
#endif // TYROAPP_H