#pragma once namespace yy { class Parser; class location; } class ParserCtx { public: ParserCtx(); ~ParserCtx(); void *lexer; yy::location *loc; yy::Parser *parser; };