]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/build.h
1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxBuildOptions class declaration
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 2002 Vadim Zeitlin <vadim@wxwindows.org>
9 // Licence: wxWindows license
10 ///////////////////////////////////////////////////////////////////////////////
15 #include "wx/version.h"
17 // ----------------------------------------------------------------------------
19 // ----------------------------------------------------------------------------
24 // the ctor must be inline to get the compilation settings of the code
25 // which included this header
35 // version: we don't test the micro version as hopefully changes
36 // between 2 micro versions don't result in fatal compatibility
38 m_verMaj
= wxMAJOR_VERSION
;
39 m_verMin
= wxMINOR_VERSION
;
47 // compiled with __WXDEBUG__?
50 // actually only CheckBuildOptions() should be our friend but well...
51 friend class wxAppBase
;
54 #endif // _WX_BUILD_H_