2017-05-29 07:54:57 +00:00
|
|
|
/***************************************************************
|
|
|
|
* Name: LCDSimulatorMain.h
|
|
|
|
* Purpose: Defines Application Frame
|
|
|
|
* Author: ()
|
|
|
|
* Created: 2017-02-25
|
|
|
|
* Copyright: ()
|
|
|
|
* License:
|
|
|
|
**************************************************************/
|
|
|
|
|
2017-12-27 12:03:30 +00:00
|
|
|
#ifndef __INCLUDE_CLASS_APPLICATION_H__
|
|
|
|
#define __INCLUDE_CLASS_APPLICATION_H__
|
2017-05-29 07:54:57 +00:00
|
|
|
|
2018-06-18 12:14:44 +00:00
|
|
|
#include <wx\dialog.h>
|
|
|
|
#include <wx\app.h>
|
2017-12-19 15:15:59 +00:00
|
|
|
|
2017-12-27 12:03:30 +00:00
|
|
|
#include "LCDFrame.h"
|
2017-05-29 07:54:57 +00:00
|
|
|
|
|
|
|
|
2017-12-19 15:15:59 +00:00
|
|
|
class Application : public wxApp
|
|
|
|
{
|
|
|
|
private:
|
2017-12-27 12:03:30 +00:00
|
|
|
LCDFrame* m_pclsMainFrame;
|
2017-05-29 07:54:57 +00:00
|
|
|
|
|
|
|
private:
|
2017-12-27 12:03:30 +00:00
|
|
|
bool OnInit(void);
|
|
|
|
int OnExit(void);
|
2017-05-29 07:54:57 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
2017-12-27 12:03:30 +00:00
|
|
|
#endif //__INCLUDE_CLASS_APPLICATION_H__
|