15 lines
331 B
C++
15 lines
331 B
C++
|
#ifndef TATUM_PARSER_HPP
|
||
|
#define TATUM_PARSER_HPP
|
||
|
|
||
|
#include "tatumparse_lexer_fwd.hpp" //Lexer class required for Parser param
|
||
|
|
||
|
//Required by parser generated header
|
||
|
#ifndef YY_NULLPTR
|
||
|
#define YY_NULLPTR nullptr
|
||
|
#endif
|
||
|
|
||
|
#include "tatumparse_common.hpp"
|
||
|
#include "tatumparse_parser.gen.hpp" //For the generated Parser class
|
||
|
|
||
|
#endif
|