Tyro/TyroApp.h

28 lines
685 B
C
Raw Normal View History

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