YATISH
Yet Another TIme SHeet
/home/nicolas/sources/yatish/yatishApp.h
Go to the documentation of this file.
1 /***************************************************************
2  * Name: yatishApp.h
3  * Purpose: Defines 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)
7  * License: GPLv3
8  **************************************************************/
9 
10 #ifndef YATISHAPP_H
11 #define YATISHAPP_H
12 
13 #include <wx/app.h>
14 #include <wx/config.h>
15 #include <wx/fs_zip.h>
16 #include <wx/snglinst.h>
17 #include <wx/stdpaths.h>
18 
19 class yatishApp : public wxApp {
20  public:
21  bool OnInit ();
22  int OnExit ();
23  private:
24 #ifdef NDEBUG
25  wxSingleInstanceChecker checker;
26 #endif
27  wxLocale * yatishLocale;
28 };
29 
30 //wxDECLARE_APP (yatishApp);
31 
32 #endif // YATISHAPP_H
int OnExit()
Definition: yatishApp.cpp:65
wxLocale * yatishLocale
Definition: yatishApp.h:27
bool OnInit()
Definition: yatishApp.cpp:35