ddt  0.1
ddtConstants.hpp
Go to the documentation of this file.
1 // @copyright
2 // (c) Copyright ESO 2020
3 // All Rights Reserved
4 // ESO (eso.org) is an Intergovernmental Organization, and therefore special
5 // legal conditions apply.
6 //
7 // @file ddtConstants.hpp
8 // @brief Contains common used constants.
9 //
10 // This file shall contain constants that can be used by all applications.
11 //
12 // @author Matthias Grimm, CGI
13 // @since 2021/02/18
14 //
15 
16 #ifndef DDTCONSTANTS_HPP_
17 #define DDTCONSTANTS_HPP_
18 
19 namespace ddt {
20 
25 const int NUMERICAL_BASE = 10;
26 
30 const int ONE_MS = 1;
31 
35 const int TEN_MS = 10;
36 
40 const int HUNDRED_MS = 100;
41 
45 const int THOUSAND_MS = 1000;
46 
50 const int ONE_SEC = 1;
51 
55 const int THREE_SEC = 3;
56 
60 const int TEN_SEC = 10;
61 
62 } // namespace ddt
63 
64 #endif /* DDTCONSTANTS_HPP_ */
ddt::HUNDRED_MS
const int HUNDRED_MS
Definition: ddtConstants.hpp:40
ddt
Definition: ddtClient.hpp:36
ddt::ONE_SEC
const int ONE_SEC
Definition: ddtConstants.hpp:50
ddt::TEN_SEC
const int TEN_SEC
Definition: ddtConstants.hpp:60
ddt::ONE_MS
const int ONE_MS
Definition: ddtConstants.hpp:30
ddt::TEN_MS
const int TEN_MS
Definition: ddtConstants.hpp:35
ddt::THREE_SEC
const int THREE_SEC
Definition: ddtConstants.hpp:55
ddt::NUMERICAL_BASE
const int NUMERICAL_BASE
Definition: ddtConstants.hpp:25
ddt::THOUSAND_MS
const int THOUSAND_MS
Definition: ddtConstants.hpp:45