1 // =================================
 2 // Copyright (c) 2021 Seppo Laakko
 3 // Distributed under the MIT license
 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 } } // namespace soulng::parser;
20 
21 #endif // SOULNG_PARSER_VALUE_INCLUDED