YATiSh
Yet Another TIme SHeet
wx_pch.h
Go to the documentation of this file.
1 /********************************************************************
2  * Name: wx_pch.h
3  * Purpose: Header to create Pre-Compiled Header (PCH)
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 WX_PCH_H_INCLUDED
11 #define WX_PCH_H_INCLUDED
12 
13 // basic wxWidgets headers
14 #include <wx/wxprec.h>
15 
16 #include <wx/aboutdlg.h>
17 #include <wx/fs_zip.h>
18 #include <wx/html/helpctrl.h>
19 #include <wx/listctrl.h>
20 #include <wx/snglinst.h>
21 #include <wx/spinctrl.h>
22 #include <wx/sstream.h>
23 #include <wx/stdpaths.h>
24 #include <wx/tokenzr.h>
25 #include <wx/valgen.h>
26 #include <wx/wfstream.h>
27 
28 #ifdef __BORLANDC__
29  #pragma hdrstop
30 #endif
31 
32 #ifndef WX_PRECOMP
33  #include <wx/wx.h>
34 #endif
35 
36 #ifdef WX_PRECOMP
37  // put here all your rarely-changing header files
38 
39  #include <wx/database/wxprec.h>
40 
41  #include <wx/pdfdoc.h>
42 
43  #include <mathplot.h>
44 
45  #include <wx/category/categorysimpledataset.h>
46  #include <wx/chartpanel.h>
47  #include <wx/pie/pieplot.h>
48  #include <wx/xy/xylinerenderer.h>
49  #include <wx/xy/xyplot.h>
50  #include <wx/xy/xysimpledataset.h>
51 
52  #include <wxcharts/wx/charts/wxcharts.h>
53 
54 #endif // WX_PRECOMP
55 
56 #endif // WX_PCH_H_INCLUDED