arsenalgear-cpp
A library containing general purpose C++ utils.
constants.hpp
Go to the documentation of this file.
1 //====================================================
2 // File data
3 //====================================================
10 //====================================================
11 // Preprocessor settings
12 //====================================================
13 #pragma once
14 #ifndef ARSENALGEAR_CONSTANTS_HPP
15 #define ARSENALGEAR_CONSTANTS_HPP
16 
17 namespace agr
18  {
19  //====================================================
20  // String constants
21  //====================================================
22 
23  // null_str
28  template <typename T>
29  inline const T null_str = "";
30 
31  // empty_space
36  template <typename T>
37  inline const T empty_space = " ";
38  }
39 
40 #endif
Definition: stream.cpp:22
const T null_str
The string used to represent the null value.
Definition: constants.hpp:29
const T empty_space
The string used to represent the empty space.
Definition: constants.hpp:37