Add blocks to header parsing state that manipulate which sequences are valid

This commit is contained in:
Jan
2021-02-14 10:27:47 +01:00
parent 3f08be0564
commit e685348abd
18 changed files with 79 additions and 33 deletions

View File

@ -24,14 +24,14 @@ const std::vector<IHeaderBlock::sequence_t*>& HeaderBlockUnion::GetTestsForBlock
return tests;
}
void HeaderBlockUnion::OnOpen()
void HeaderBlockUnion::OnOpen(HeaderParserState* state)
{
}
void HeaderBlockUnion::OnClose()
void HeaderBlockUnion::OnClose(HeaderParserState* state)
{
}
void HeaderBlockUnion::OnChildBlockClose(IHeaderBlock* block)
void HeaderBlockUnion::OnChildBlockClose(HeaderParserState* state, IHeaderBlock* block)
{
}