2019-10-25 20:16:43 +02:00
|
|
|
/*
|
|
|
|
|
* File: global.h
|
2022-11-19 15:56:56 +01:00
|
|
|
* Author: Saleem Edah-Tally - nmset@yandex.com
|
2019-10-25 20:16:43 +02:00
|
|
|
* License : GPL v2
|
2022-11-19 15:56:56 +01:00
|
|
|
* Copyright Saleem Edah-Tally - © 2019
|
2019-10-25 20:16:43 +02:00
|
|
|
*
|
|
|
|
|
* 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");
|
2020-11-03 11:17:10 +01:00
|
|
|
const WString _APPVERSION_("2");
|
2019-10-25 20:16:43 +02:00
|
|
|
const WString _SPACE_(" ");
|
|
|
|
|
const WString _COLON_(":");
|
2020-11-14 15:03:36 +01:00
|
|
|
const WString _DASH_("-");
|
2020-11-03 11:06:25 +01:00
|
|
|
const WString _BRACKET_OPEN_("(");
|
|
|
|
|
const WString _BRACKET_CLOSE_(")");
|
|
|
|
|
const WString _ANGLE_BRACKET_OPEN_("<");
|
|
|
|
|
const WString _ANGLE_BRACKET_CLOSE_(">");
|
2019-10-25 20:16:43 +02:00
|
|
|
|
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 */
|
|
|
|
|
|