summaryrefslogtreecommitdiff
path: root/library/wxWidgets.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 16:44:25 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 16:44:25 +0200
commitc63d9b438572f06f555e2232a15bd3c46bd10546 (patch)
tree92f2eca00f2a915078ee979acf26906670d75e5f /library/wxWidgets.h
downloadFreeFileSync-c63d9b438572f06f555e2232a15bd3c46bd10546.tar.gz
FreeFileSync-c63d9b438572f06f555e2232a15bd3c46bd10546.tar.bz2
FreeFileSync-c63d9b438572f06f555e2232a15bd3c46bd10546.zip
1.2
Diffstat (limited to 'library/wxWidgets.h')
-rw-r--r--library/wxWidgets.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/library/wxWidgets.h b/library/wxWidgets.h
new file mode 100644
index 00000000..dd27498c
--- /dev/null
+++ b/library/wxWidgets.h
@@ -0,0 +1,16 @@
+#ifndef WXWIDGETS_H_INCLUDED
+#define WXWIDGETS_H_INCLUDED
+
+// For compilers that support precompilation
+#include <wx/wxprec.h>
+
+#ifdef __BORLANDC__
+#pragma hdrstop
+#endif //__BORLANDC__
+
+#ifndef WX_PRECOMP
+// Include your minimal set of headers here, or wx.h
+#include <wx/wx.h>
+#endif
+
+#endif // WXWIDGETS_H_INCLUDED
bgstack15