1
2
3
4
5
6 #ifndef SOULNG_PARSER_VALUE_INCLUDED
7 #define SOULNG_PARSER_VALUE_INCLUDED
8 #include <soulng/parser/ParserApi.hpp>
9
10 namespace soulng { namespace parser {
11
12 template<class T>
13 struct Value
14 {
15 Value(const T& value_) : value(value_) {}
16 T value;
17 };
18
19 } }
20
21 #endif // SOULNG_PARSER_VALUE_INCLUDED