1
2
3
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 } }
19
20 #endif // SOULNG_PARSER_RANGE_INCLUDED