Mercurial > retraceit
comparison src/constants.h @ 0:147b08bc7d64
Initial commit of a basic Application framework.
author | Andre Heinecke <andre.heinecke@intevation.de> |
---|---|
date | Mon, 23 Mar 2015 12:41:52 +0100 |
parents | |
children | 248d5d1cdb38 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:147b08bc7d64 |
---|---|
1 #ifndef CONSTANTS_H | |
2 #define CONSTANTS_H | |
3 /* Copyright (C) 2014 by Intevation GmbH | |
4 * | |
5 * This file is Free Software under the GNU GPL (v>=2) | |
6 * and comes with ABSOLUTELY NO WARRANTY! | |
7 * See LICENSE.txt for details. | |
8 */ | |
9 | |
10 /** @file Common definitions for this project. | |
11 * | |
12 * This file can be included to pull in common | |
13 * definitions in the application. */ | |
14 | |
15 /**@def The version of the software package. */ | |
16 #ifndef VERSION | |
17 #define VERSION "0.0.1" | |
18 #endif | |
19 | |
20 /**@def The user visible application name. */ | |
21 #ifndef APPNAME | |
22 #define APPNAME "undefined" | |
23 #endif | |
24 | |
25 /**@def The user visible organization behind this. */ | |
26 #ifndef ORGANIZATION | |
27 #define ORGANIZATION "Intevation GmbH" | |
28 #endif | |
29 | |
30 /**@def Short command line description. */ | |
31 #define DESCRIPTION "A tool to replay recorded user sessions." | |
32 | |
33 /**@def Short copyright notice to show users. */ | |
34 #define COPYRIGHT "Copyright (C) 2015 Intevation GmbH \n\n" \ | |
35 "This file is Free Software under the GNU GPL (v>=2)\n" \ | |
36 "and comes with ABSOLUTELY NO WARRANTY!\n" | |
37 | |
38 /**@def the config key for the last selected root folder. */ | |
39 #define ROOT_FOLDER_KEY "RootFolder" | |
40 | |
41 /**@def the config key for the root folder info pattern. */ | |
42 #define ROOT_FOLDER_PATTERN_KEY "RootFolderPattern" | |
43 | |
44 /**@def the default value for the root folder pattern */ | |
45 #define DEFAULT_ROOT_PATTERN "Datum_Fachnummr_Batch-Nr." | |
46 | |
47 /**@def the config key for the last selected subfolder. */ | |
48 #define SUB_FOLDER_KEY "SubFolder" | |
49 | |
50 /**@def the config key for the sub folder info pattern. */ | |
51 #define SUB_FOLDER_PATTERN_KEY "SubFolderPattern" | |
52 | |
53 /**@def the default value for the root folder pattern */ | |
54 #define SUB_FOLDER_PATTERN "IP-Addr_Nethz-Login" | |
55 | |
56 #endif // CONSTANTS_H |