mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2026-05-02 00:19:35 +00:00
18 lines
408 B
C++
18 lines
408 B
C++
#pragma once
|
|
|
|
#include "Parsing/Commands/Impl/CommandsParser.h"
|
|
|
|
#include <unordered_map>
|
|
|
|
class SequenceArchitecture final : public CommandsParser::sequence_t
|
|
{
|
|
public:
|
|
SequenceArchitecture();
|
|
|
|
protected:
|
|
void ProcessMatch(CommandsParserState* state, SequenceResult<CommandsParserValue>& result) const override;
|
|
|
|
private:
|
|
std::unordered_map<std::string, Architecture> m_architecture_mapping;
|
|
};
|