forked from xLightsSequencer/xLights
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxScheduleApp.h
32 lines (24 loc) · 907 Bytes
/
xScheduleApp.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#pragma once
/***************************************************************
* This source files comes from the xLights project
* https://www.xlights.org
* https://github.com/smeighan/xLights
* See the github commit history for a record of contributing
* developers.
* Copyright claimed based on commit dates recorded in Github
* License: https://github.com/smeighan/xLights/blob/master/License.txt
**************************************************************/
#include "../common/xlBaseApp.h"
class wxSingleInstanceChecker;
class xScheduleFrame;
class xScheduleApp : public xlBaseApp
{
wxSingleInstanceChecker* _checker = nullptr;
public:
xScheduleApp();
virtual bool OnInit() override;
void WipeSettings();
virtual int OnExit() override;
xScheduleFrame* GetFrame() { return (xScheduleFrame*)GetTopWindow(); }
};
DECLARE_APP(xScheduleApp)