mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-20 16:15:43 +00:00
19 lines
486 B
C++
19 lines
486 B
C++
#pragma once
|
|
|
|
#include "CommandsLexer.h"
|
|
#include "CommandsParserState.h"
|
|
#include "CommandsParserValue.h"
|
|
#include "Parsing/Impl/AbstractParser.h"
|
|
#include "Persistence/IDataRepository.h"
|
|
|
|
class CommandsParser final : public AbstractParser<CommandsParserValue, CommandsParserState>
|
|
{
|
|
IDataRepository* m_repository;
|
|
|
|
protected:
|
|
const std::vector<sequence_t*>& GetTestsForState() override;
|
|
|
|
public:
|
|
CommandsParser(CommandsLexer* lexer, IDataRepository* targetRepository);
|
|
};
|