ifw-core  5.0.0-pre2
constants.hpp
Go to the documentation of this file.
1 
6 #ifndef IFW_CORE_UTILS_CONSTANTS_HPP_
7 #define IFW_CORE_UTILS_CONSTANTS_HPP_
8 
9 #include <limits.h>
10 #include <stdarg.h>
11 #include <string>
12 #include <map>
13 #include <list>
14 #include <fstream>
15 #include <variant>
16 
17 
18 namespace core::utils::base {
19 
20  const std::string SYSROOT = "SYSROOT";
21  const std::string INTROOT = "INTROOT";
22  const std::string DATAROOT = "DATAROOT";
23  const std::string CFGPATH = "CFGPATH";
24 
25  const std::string EXT_FITS = "fits";
26 
27  const int64_t NO_TIMEOUT = -1;
28 
29  const std::string INVALID = "__INVALID__";
30 
31  const std::string NOT_IMPLEMENTED = "NotImplemented";
32 
33  const std::string UNDEFINED = "__UNDEFINED__";
34 
35  const int64_t FAILURE = 1;
36  const int64_t SUCCESS = 0;
37 
38 }
39 
40 #endif // IFW_CORE_UTILS_CONSTANTS_HPP_
Definition: base.hpp:28
const int64_t SUCCESS
Definition: constants.hpp:36
const std::string UNDEFINED
Definition: constants.hpp:33
const int64_t NO_TIMEOUT
Definition: constants.hpp:27
const std::string INTROOT
Definition: constants.hpp:21
const std::string SYSROOT
Definition: constants.hpp:20
const std::string EXT_FITS
Definition: constants.hpp:25
const std::string NOT_IMPLEMENTED
Definition: constants.hpp:31
const int64_t FAILURE
Definition: constants.hpp:35
const std::string INVALID
Definition: constants.hpp:29
const std::string DATAROOT
Definition: constants.hpp:22
const std::string CFGPATH
Definition: constants.hpp:23