1 2 3 4 5 6 7 8 9 10 11
#ifndef NOP_H #define NOP_H #include "instruction.h" class InstructionNop : public Instruction { public: std::vector<std::string> to_strs(); }; #endif // NOP_H