Timesheets-Server
Timesheets server
Načítám...
Vyhledávám...
Nebylo nic nalezeno
version.h
Zobrazit dokumentaci tohoto souboru.
1
6#ifndef _VERSION_H_
7#define _VERSION_H_
8
9#define VERSION "1.0.1"
10
11
12#ifndef DOXYGEN_SHOULD_SKIP_THIS
13#define SETTINGS_ORGANIZATION_NAME "hobrasoft.cz"
14#define SETTINGS_ORGANIZATION_DOMAIN "hobrasoft.cz"
15#define SETTINGS_APPLICATION "timesheets"
16#endif
17
18inline QString qtVersion() {
19 int x,a,b,c;
20 x = QT_VERSION;
21 a = x%256;
22 x = x/256;
23 b = x%256;
24 x = x/256;
25 c = x%256;
26 return QString("%1.%2.%3").arg(c).arg(b).arg(a);
27}
28
29
30#endif
31