#include <ParserSharedInputState.hpp>

Public Member Functions | |
| ParserInputState (TokenBuffer *in) | |
| ParserInputState (TokenBuffer &in) | |
| virtual | ~ParserInputState () |
| TokenBuffer & | getInput (void) |
| void | reset (void) |
| Reset the ParserInputState and the underlying TokenBuffer. | |
| ANTLR_USE_NAMESPACE (std) string filename | |
Data Fields | |
| int | guessing |
Private Member Functions | |
| ParserInputState (const ParserInputState &) | |
| ParserInputState & | operator= (const ParserInputState &) |
Private Attributes | |
| TokenBuffer * | input |
| bool | inputResponsible |
| Do we need to free the TokenBuffer or is it owned by another.. | |
Definition at line 25 of file ParserSharedInputState.hpp.
| ParserInputState::ParserInputState | ( | TokenBuffer * | in | ) | [inline] |
Construct a new ParserInputState
| in | the TokenBuffer to read from. The object is deleted together with the ParserInputState object. |
Definition at line 31 of file ParserSharedInputState.hpp.
| ParserInputState::ParserInputState | ( | TokenBuffer & | in | ) | [inline] |
Construct a new ParserInputState
| in | the TokenBuffer to read from. |
Definition at line 41 of file ParserSharedInputState.hpp.
| virtual ParserInputState::~ParserInputState | ( | ) | [inline, virtual] |
Definition at line 49 of file ParserSharedInputState.hpp.
| ParserInputState::ParserInputState | ( | const ParserInputState & | ) | [private] |
| TokenBuffer& ParserInputState::getInput | ( | void | ) | [inline] |
Definition at line 55 of file ParserSharedInputState.hpp.
| void ParserInputState::reset | ( | void | ) | [inline] |
Reset the ParserInputState and the underlying TokenBuffer.
Definition at line 61 of file ParserSharedInputState.hpp.
| ParserInputState::ANTLR_USE_NAMESPACE | ( | std | ) |
What file (if known) caused the problem?
| ParserInputState& ParserInputState::operator= | ( | const ParserInputState & | ) | [private] |
Are we guessing (guessing>0)?
Definition at line 69 of file ParserSharedInputState.hpp.
TokenBuffer* ParserInputState::input [private] |
Where to get token objects
Definition at line 76 of file ParserSharedInputState.hpp.
bool ParserInputState::inputResponsible [private] |
Do we need to free the TokenBuffer or is it owned by another..
Definition at line 78 of file ParserSharedInputState.hpp.
1.5.6