1 // =================================
 2 // Copyright (c) 2021 Seppo Laakko
 3 // Distributed under the MIT license
 4 // =================================
 5 
 6 #ifndef SOULNG_PARSER_RANGE_INCLUDED
 7 #define SOULNG_PARSER_RANGE_INCLUDED
 8 #include <soulng/parser/ParserApi.hpp>
 9 
10 namespace soulng { namespace parser {
11 
12 struct Range 
13 {
14     int first;
15     int last;
16 };
17 
18 } } // namespace soulng::parser;
19 
20 #endif // SOULNG_PARSER_RANGE_INCLUDED