Code::Blocks  SVN r11506
appglobals.h
Go to the documentation of this file.
1 /*
2  * This file is part of the Code::Blocks IDE and licensed under the GNU General Public License, version 3
3  * http://www.gnu.org/licenses/gpl-3.0.html
4  */
5 
6 #ifndef APPGLOBALS_H
7 #define APPGLOBALS_H
8 
9 #include <wx/string.h>
10 #include <wx/intl.h>
11 
12 //#define RELEASE "17.12"
13 
14 #ifndef RELEASE
15  #define RELEASE "svn"
16  #define SVN_BUILD 1
17 #endif
18 
19 namespace appglobals
20 {
21  typedef struct { int locale_code; wxString name; } Localisation;
22 
23  extern const wxString AppVendor;
24  extern const wxString AppName;
25  extern const wxString AppVersion;
26  extern const wxString AppActualVersionVerb;
27  extern const wxString AppActualVersion;
28  extern const wxString AppSDKVersion;
29  extern const wxString AppUrl;
30  extern const wxString AppContactEmail;
31  extern const wxString AppPlatform;
32  extern const wxString AppWXAnsiUnicode;
33  extern const wxString AppBuildTimestamp;
34 
35  extern const wxString DefaultBatchBuildArgs;
36 }
37 
38 #endif // APPGLOBALS_H
const wxString AppPlatform
Definition: appglobals.cpp:43
const wxString AppActualVersionVerb
Definition: appglobals.cpp:26
const wxString AppUrl
Definition: appglobals.cpp:39
const wxString AppActualVersion
Definition: appglobals.cpp:27
const wxString AppWXAnsiUnicode
Definition: appglobals.cpp:58
const wxString AppBuildTimestamp
Definition: appglobals.cpp:66
const wxString AppContactEmail
Definition: appglobals.cpp:40
const wxString AppName
Definition: appglobals.cpp:22
const wxString AppVendor
Definition: appglobals.cpp:21
const wxString AppVersion
Definition: appglobals.cpp:25
const wxString DefaultBatchBuildArgs
Definition: appglobals.cpp:72
const wxString AppSDKVersion
Definition: appglobals.cpp:34