14 lines
280 B
C++
14 lines
280 B
C++
|
#ifndef SDC_PARSER_HPP
|
||
|
#define SDC_PARSER_HPP
|
||
|
|
||
|
#include "sdc_lexer_fwd.hpp" //Lexer class required for Parser param
|
||
|
|
||
|
//Required by parser generated header
|
||
|
#ifndef YY_NULLPTR
|
||
|
#define YY_NULLPTR nullptr
|
||
|
#endif
|
||
|
|
||
|
#include "sdc_parser.gen.hpp" //For the generated Parser class
|
||
|
|
||
|
#endif
|