2019-10-25 20:16:43 +02:00
|
|
|
/*
|
|
|
|
|
* File: global.h
|
2019-10-28 14:12:50 +01:00
|
|
|
* Author: SET - nmset@yandex.com
|
2019-10-25 20:16:43 +02:00
|
|
|
* License : GPL v2
|
|
|
|
|
* Copyright SET - © 2019
|
|
|
|
|
*
|
|
|
|
|
* Created on 8 octobre 2019, 20:52
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef GLOBAL_H
|
|
|
|
|
#define GLOBAL_H
|
|
|
|
|
|
|
|
|
|
#include <Wt/WString.h>
|
|
|
|
|
using namespace Wt;
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
|
|
#define TR(sk) WString::tr(sk)
|
|
|
|
|
|
|
|
|
|
const WString _APPNAME_("K7");
|
|
|
|
|
const WString _APPVERSION_("1");
|
|
|
|
|
const WString _SPACE_(" ");
|
|
|
|
|
const WString _COLON_(":");
|
|
|
|
|
|
2020-10-25 17:28:47 +01:00
|
|
|
typedef map<int, WString> UidValidityMap;
|
|
|
|
|
typedef map<int, WString> OwnerTrustMap;
|
|
|
|
|
|
2019-10-25 20:16:43 +02:00
|
|
|
|
|
|
|
|
#endif /* GLOBAL_H */
|
|
|
|
|
|