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