builtin.hpp 210 Bytes
Newer Older
Paul's avatar
Paul committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef RTG_GUARD_BUILTIN_HPP
#define RTG_GUARD_BUILTIN_HPP

namespace rtg {

namespace builtin {

static const char * literal = "@literal";
static const char * param = "@param";

}

} // namespace rtg

#endif