summaryrefslogtreecommitdiff
path: root/library/wxWidgets.h
blob: dd27498cedd927168ee5844746f591e808a8fdcf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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