-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathstdafx.h
70 lines (64 loc) · 1.52 KB
/
stdafx.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#ifndef STDAFX_H_INCLUDED
#define STDAFX_H_INCLUDED
// basic wxWidgets headers
#include <wx/wxprec.h>
#include <wx/wx.h>
// extended wxWidgets headers
#include <wx/filename.h>
#include <wx/dir.h>
#include <wx/wfstream.h>
#include <wx/txtstrm.h>
#include <wx/regex.h>
#include <wx/config.h>
#include <wx/listctrl.h>
#include <wx/calctrl.h>
#include <wx/dcbuffer.h>
// more wxWidgets headers
#include <wx/panel.h>
#include <wx/gdicmn.h>
#include <wx/font.h>
#include <wx/colour.h>
#include <wx/settings.h>
#include <wx/string.h>
#include <wx/statline.h>
#include <wx/textctrl.h>
#include <wx/sizer.h>
#include <wx/bitmap.h>
#include <wx/image.h>
#include <wx/treectrl.h>
#include <wx/listctrl.h>
#include <wx/notebook.h>
#include <wx/splitter.h>
#include <wx/statusbr.h>
#include <wx/menu.h>
#include <wx/toolbar.h>
#include <wx/frame.h>
#include <wx/radiobox.h>
#include <wx/stattext.h>
#include <wx/spinctrl.h>
#include <wx/statbox.h>
#include <wx/button.h>
#include <wx/dialog.h>
#include <wx/hyperlink.h>
#include <wx/sound.h>
#include <wx/display.h>
#include <wx/tokenzr.h>
#include <wx/graphics.h>
#include <wx/clipbrd.h>
#include <wx/persist.h>
#include <wx/persist/toplevel.h>
// STD headers
#include <utility>
#include <memory>
#include <vector>
#include <set>
#include <string>
#include <map>
#include <algorithm>
#include <functional>
#include <type_traits>
#include <tuple>
#include <cmath>
// Boost headers
#include <boost/lexical_cast.hpp>
#endif // STDAFX_H_INCLUDED