Version: 1.0.0
base/wxprec.h
Go to the documentation of this file.
1 #ifndef _WX_MLBASE_WXPREC_H_
2 #define _WX_MLBASE_WXPREC_H_
3 
4 #include "wx/database/wxprec.h"
5 
6 #if defined(_DEBUG) && defined(_MSC_VER)
7  #include <crtdbg.h>
8  #define debug_normal_new new(_NORMAL_BLOCK ,__FILE__, __LINE__)
9  #define debug_ignore_new new(_IGNORE_BLOCK ,__FILE__, __LINE__)
10 #else
11  #define debug_normal_new new
12  #define debug_ignore_new new
13 #endif
14 
15 #include "wx/base/setup.h"
16 #include "wx/base/dlimpexp.h"
17 
18 #include <wx/convauto.h>
19 #include <wx/confbase.h>
20 
21 #if wxUSE_DATABASE_CONFIG
22  #include "wx/base/dbconf.h"
23 #endif
24 #if wxUSE_XML_CONFIG
25  #include "wx/base/xmlconf.h"
26 #endif
27 
28 #endif//_WX_MLBASE_WXPREC_H_