18 lines
199 B
C++
18 lines
199 B
C++
#pragma once
|
|
|
|
namespace yy
|
|
{
|
|
class Parser;
|
|
class location;
|
|
}
|
|
|
|
class ParserCtx
|
|
{
|
|
public:
|
|
ParserCtx();
|
|
~ParserCtx();
|
|
|
|
void *lexer;
|
|
yy::location *loc;
|
|
yy::Parser *parser;
|
|
};
|