]> vaikene.ee Git - evaf/blob - src/main/CLI/version.h
Added iApp::exec() function, which enters the Qt event loop and runs the application.
[evaf] / src / main / CLI / version.h
1 /**
2 * @file main/CLI/version.h
3 * @brief Version information for eVaf modules
4 * @author Enar Vaikene
5 *
6 * Copyright (c) 2011 Enar Vaikene
7 *
8 * This file is part of the eVaf C++ cross-platform application development framework.
9 *
10 * This file can be used under the terms of the GNU General Public License
11 * version 3.0 as published by the Free Software Foundation and appearing in
12 * the file LICENSE included in the packaging of this file. Please review the
13 * the following information to ensure the GNU General Public License version
14 * 3.0 requirements will be met: http://www.gnu.org/copyleft/gpl.html.
15 *
16 * Alternatively, this file may be used in accordance with the Commercial License
17 * Agreement provided with the Software.
18 */
19
20 #ifndef __CLI_VERSION_H
21 # define __CLI_VERSION_H
22
23 #include <version_rc.h>
24
25 /**
26 * Module/library version number in the form major,minor,release,build
27 */
28 #define VER_FILE_VERSION 0,1,2,3
29
30 /**
31 * Module/library version number in the string format (shall end with \0)
32 */
33 #define VER_FILE_VERSION_STR "0.1.2.3\0"
34
35 /**
36 * Module/library name (shall end with \0)
37 */
38 #define VER_MODULE_NAME_STR "eVafCLI\0"
39
40 /**
41 * Original file name for windows (shall end with \0)
42 */
43 #define VER_ORIGINAL_FILE_NAME_STR "eVafCLI.exe\0"
44
45 /**
46 * Description of the module/library (shall end with \0)
47 */
48 #define VER_FILE_DESCRIPTION_STR "Main eVaf CLI executable.\0"
49
50 #endif // version.h