#pragma once #include #include "instructions.hpp" class InstructionHanlder { public: static InstructionType getInstruction(Instruction* instr); static std::string getInstructionString(Instruction* instr); private: static std::tuple getTpl(Instruction* instr); static std::tuple array[6]; };