1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxBuildOptions class declaration
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 2002 Vadim Zeitlin <vadim@wxwindows.org>
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
15 #include "wx/version.h"
17 class WXDLLIMPEXP_BASE wxAppConsole
;
19 // ----------------------------------------------------------------------------
21 // ----------------------------------------------------------------------------
26 // the ctor must be inline to get the compilation settings of the code
27 // which included this header
37 // version: we don't test the micro version as hopefully changes
38 // between 2 micro versions don't result in fatal compatibility
40 m_verMaj
= wxMAJOR_VERSION
;
41 m_verMin
= wxMINOR_VERSION
;
49 // compiled with __WXDEBUG__?
52 // actually only CheckBuildOptions() should be our friend but well...
53 friend class wxAppConsole
;
56 #endif // _WX_BUILD_H_