btool
A parser/converter/transpiler for .bib files
ParserState.hpp
Go to the documentation of this file.
1 #ifndef BIBPARSER_PARSERSTATE_HPP
2 #define BIBPARSER_PARSERSTATE_HPP
3 
7 struct ParserState {
8 
12  virtual ~ParserState() = default;
13 
19  virtual auto handleCharacter(char c) -> ParserState * = 0;
20 };
21 
22 #endif
ParserState
Definition: ParserState.hpp:7
ParserState::handleCharacter
virtual auto handleCharacter(char c) -> ParserState *=0
ParserState::~ParserState
virtual ~ParserState()=default