inital
This commit is contained in:
commit
080d115e17
6 changed files with 202 additions and 0 deletions
23
src/ParserCtx.hpp
Normal file
23
src/ParserCtx.hpp
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
#pragma once
|
||||
|
||||
namespace yy
|
||||
{
|
||||
class Parser;
|
||||
class location;
|
||||
}
|
||||
|
||||
namespace Elite
|
||||
{
|
||||
|
||||
class ParserCtx
|
||||
{
|
||||
public:
|
||||
ParserCtx();
|
||||
~ParserCtx();
|
||||
|
||||
void *lexer;
|
||||
yy::location *loc;
|
||||
yy::Parser *parser;
|
||||
};
|
||||
|
||||
} // namespace Elite
|
||||
Loading…
Add table
Add a link
Reference in a new issue