DDS  ver. 3.6
Res.h
Go to the documentation of this file.
1 // Copyright 2014 GSI, Inc. All rights reserved.
2 //
3 // A resources file.
4 //
5 #ifndef _DDS_RES_H_
6 #define _DDS_RES_H_
7 
8 #include "def.h"
9 
10 namespace dds::misc
11 {
12 
13  //---------------------- CLog -------------------------------------------
14  const LPCSTR g_cszLOG_DATETIME_FRMT("%Y-%m-%d %H:%M:%S");
15  const size_t LOG_DATETIME_BUFF_LEN(25);
16  const LPCSTR g_cszLOG_SEVERITY_INFO("INF");
17  const LPCSTR g_cszLOG_SEVERITY_WARNING("WRN");
18  const LPCSTR g_cszLOG_SEVERITY_FAULT("ERR");
20  const LPCSTR g_cszLOG_SEVERITY_DEBUG("DBG");
21 
22  const LPCSTR g_cszMODULENAME_CORE("CORE");
23 
24  //---------------------- strings -------------------------------------------
25  const LPCSTR g_cszReportBugsAddr("Report bugs/comments to fairroot@gsi.de");
26  const LPCSTR g_cszDDSServerIsNotFound_StartIt("Looks like we can't find any suitable DDS commander server to "
27  "connect. Use \"dds-session start\" to start one.");
28 }; // namespace dds::misc
29 #endif // _DDS_RES_H_
const LPCSTR g_cszMODULENAME_CORE("CORE")
const LPCSTR g_cszLOG_SEVERITY_WARNING("WRN")
const LPCSTR g_cszLOG_SEVERITY_FAULT("ERR")
const char * LPCSTR
A long pointer to constant string.
Definition: def.h:100
const LPCSTR g_cszReportBugsAddr("Report bugs/comments to fairroot@gsi.de")
const size_t LOG_DATETIME_BUFF_LEN(25)
const LPCSTR g_cszLOG_SEVERITY_DEBUG("DBG")
const LPCSTR g_cszLOG_SEVERITY_CRITICAL_ERROR("FLT")
const LPCSTR g_cszDDSServerIsNotFound_StartIt("Looks like we can't find any suitable DDS commander server to " "connect. Use \"dds-session start\" to start one.")
const LPCSTR g_cszLOG_SEVERITY_INFO("INF")
const LPCSTR g_cszLOG_DATETIME_FRMT("%Y-%m-%d %H:%M:%S")
Log Date/Time format.
Definition: BoostHelper.h:14