15 lines
311 B
C++
15 lines
311 B
C++
|
#ifndef BLIF_PARSER_HPP
|
||
|
#define BLIF_PARSER_HPP
|
||
|
|
||
|
#include "blif_lexer_fwd.hpp" //Lexer class required for Parser param
|
||
|
|
||
|
//Required by parser generated header
|
||
|
#ifndef YY_NULLPTR
|
||
|
#define YY_NULLPTR nullptr
|
||
|
#endif
|
||
|
|
||
|
#include "blif_common.hpp"
|
||
|
#include "blif_parser.gen.hpp" //For the generated Parser class
|
||
|
|
||
|
#endif
|