summaryrefslogtreecommitdiff
path: root/library/pch.h
diff options
context:
space:
mode:
Diffstat (limited to 'library/pch.h')
-rw-r--r--library/pch.h98
1 files changed, 98 insertions, 0 deletions
diff --git a/library/pch.h b/library/pch.h
new file mode 100644
index 00000000..37c3383f
--- /dev/null
+++ b/library/pch.h
@@ -0,0 +1,98 @@
+#ifndef FFS_PRECOMPILED_HEADER
+#define FFS_PRECOMPILED_HEADER
+
+DO NOT USE THIS FILE: FOR SOME REASON IT CORRUPTS COMPILATION!!!
+
+//#####################################################
+// basic wxWidgets headers
+#ifndef WX_PRECOMP
+#define WX_PRECOMP
+#endif
+
+#include <wx/wxprec.h>
+
+#ifndef WX_PRECOMP
+#include <wx/wx.h>
+#endif
+
+//#####################################################
+// #include other rarely changing headers here
+
+//STL headers
+#include <vector>
+#include <set>
+#include <string>
+#include <stack>
+#include <algorithm>
+#include <map>
+
+//C headers
+#include <fstream>
+
+#ifdef FFS_LINUX
+#include <utime.h>
+#endif //FFS_LINUX
+
+//other wxWidgets headers
+#include <wx/grid.h>
+#include <sys/stat.h>
+#include <wx/animate.h>
+#include <wx/app.h>
+#include <wx/arrstr.h>
+#include <wx/bitmap.h>
+#include <wx/bmpbuttn.h>
+#include <wx/button.h>
+#include <wx/checkbox.h>
+#include <wx/choice.h>
+#include <wx/clipbrd.h>
+#include <wx/cmdline.h>
+#include <wx/colour.h>
+#include <wx/config.h>
+#include <wx/dc.h>
+#include <wx/dialog.h>
+#include <wx/dir.h>
+#include <wx/dnd.h>
+#include <wx/file.h>
+#include <wx/filename.h>
+#include <wx/filepicker.h>
+#include <wx/font.h>
+#include <wx/frame.h>
+#include <wx/gauge.h>
+#include <wx/gdicmn.h>
+#include <wx/grid.h>
+#include <wx/hyperlink.h>
+#include <wx/icon.h>
+#include <wx/image.h>
+#include <wx/intl.h>
+#include <wx/log.h>
+#include <wx/menu.h>
+#include <wx/msgdlg.h>
+#include <wx/panel.h>
+#include <wx/radiobut.h>
+#include <wx/settings.h>
+#include <wx/sizer.h>
+#include <wx/statbmp.h>
+#include <wx/statbox.h>
+#include <wx/statline.h>
+#include <wx/stattext.h>
+#include <wx/stdpaths.h>
+#include <wx/stopwatch.h>
+#include <wx/stream.h>
+#include <wx/string.h>
+#include <wx/textctrl.h>
+#include <wx/thread.h>
+#include <wx/utils.h>
+#include <wx/wfstream.h>
+#include <wx/zipstrm.h>
+#include <wx/scrolwin.h>
+#include <wx/notebook.h>
+
+//other
+#include "tinyxml/tinyxml.h"
+
+#ifdef FFS_WIN
+#include <windows.h>
+#endif //FFS_WIN
+//#####################################################
+
+#endif //FFS_PRECOMPILED_HEADER
bgstack15