YATiSh
Yet Another TIme SHeet
yatishApp.h
Go to the documentation of this file.
1 /********************************************************************
2  * Name: yatishApp.h
3  * Purpose: Declares the Application class
4  * Author: Nicolas PĂ©renne (nicolas.perenne@eif-services.eu)
5  * Created: 2020-02-11
6  * Copyright: EIF-services (https://www.eif-services.eu/yatish)
7  * License: GPLv3
8  ********************************************************************/
9 
10 #ifndef YATISHAPP_H
11 #define YATISHAPP_H
12 
17 class yatishApp : public wxApp {
18  public:
19  bool OnInit ();
20  int OnExit ();
21  private:
22 #ifdef NDEBUG
23  wxSingleInstanceChecker checker;
24 #endif
25  wxLocale * yatishLocale;
26 };
27 
28 //wxDECLARE_APP (yatishApp);
29 
30 #endif // YATISHAPP_H
Usual wxWidgets application class, taking care of:
Definition: yatishApp.h:17
wxLocale * yatishLocale
Definition: yatishApp.h:25
bool OnInit()
Definition: yatishApp.cpp:33
int OnExit()
Definition: yatishApp.cpp:63