XX CMake Package
Loading...
Searching...
No Matches
XXCompileTimeString.h
Go to the documentation of this file.
1#ifndef XXCompileTimeStringH
2#define XXCompileTimeStringH
3
4#include <string>
5
6namespace XX
7{
10
11 template <size_t N>
13 {
14 constexpr CompileTimeString(const char (&str)[N]);
15 char value[N];
16
17 std::string text() const;
18 };
19} // namespace XX
20
21#ifndef XXCompileTimeStringHPP
22#include "XXCompileTimeString.hpp"
23#endif // NOT XXCompileTimeStringHPP
24
25#endif // NOT XXCompileTimeStringH
Definition XXPopulatedAbstract.h:11
constexpr CompileTimeString(const char(&str)[N])
char value[N]
Definition XXCompileTimeString.h:15
std::string text() const