Mercurial > retraceit
comparison src/constants.h @ 41:ae8e859de68e
Clarify some comments about constants
author | Andre Heinecke <andre.heinecke@intevation.de> |
---|---|
date | Wed, 06 May 2015 18:18:26 +0200 |
parents | 0c05958d254c |
children | 73e6b6b12412 |
comparison
equal
deleted
inserted
replaced
40:89997d853bf6 | 41:ae8e859de68e |
---|---|
11 /** @file Common definitions for this project. | 11 /** @file Common definitions for this project. |
12 * | 12 * |
13 * This file can be included to pull in common | 13 * This file can be included to pull in common |
14 * definitions in the application. */ | 14 * definitions in the application. */ |
15 | 15 |
16 /**@def The version of the software package. */ | 16 /**@def The version of the software package. |
17 * | |
18 * Usually defined as Build parameter. | |
19 */ | |
17 #ifndef VERSION | 20 #ifndef VERSION |
18 #define VERSION "0.0.1" | 21 #define VERSION "0.0.1" |
19 #endif | 22 #endif |
20 | 23 |
21 /**@def The user visible application name. */ | 24 /**@def The user visible application name. |
25 * | |
26 * Usually defined as Build parameter. | |
27 **/ | |
22 #ifndef APPNAME | 28 #ifndef APPNAME |
23 #define APPNAME "undefined" | 29 #define APPNAME "unknown" |
24 #endif | 30 #endif |
25 | 31 |
26 /**@def Short command line description. */ | 32 /**@def Short command line description. */ |
27 #define DESCRIPTION "A tool to replay recorded user sessions." | 33 #define DESCRIPTION "A tool to replay recorded user sessions." |
28 | 34 |