summaryrefslogtreecommitdiff
path: root/library/wxWidgets.h
diff options
context:
space:
mode:
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