blob: a383a6f4bc690e0da2894243858021657c81b8d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#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 <wx/wx.h>
#endif
#ifdef WX_PRECOMP
// put here all your rarely-changing header files
#endif // WX_PRECOMP
#endif // WXWIDGETS_H_INCLUDED
|