1 // =================================
 2 // Copyright (c) 2021 Seppo Laakko
 3 // Distributed under the MIT license
 4 // =================================
 5 
 6 #ifndef SOULNG_PARSER_MATCH_INCLUDED
 7 #define SOULNG_PARSER_MATCH_INCLUDED
 8 #include <soulng/parser/ParserApi.hpp>
 9 #include <soulng/lexer/Lexer.hpp>
10 
11 namespace soulng { namespace parser {
12 
13 struct Match 
14 {
15     Match(bool hit_) : hit(hit_)value(nullptr) {}
16     Match(bool hit_void* value_) : hit(hit_)value(value_) {}
17     bool hit;
18     void* value;
19 };
20 
21 } } // namespace soulng::parser;
22 
23 #endif // SOULNG_PARSER_MATCH_INCLUDED