1 2 3 4 5 6 7 8 9
#include "ex.h" #include "accessor.h" #include "instrDTO.h" #include "response.h" #include "stage.h" EX::EX(Stage *stage) : Stage(stage) { this->id = EXEC; } Response EX::advance(InstrDTO &next_instr, Response p) { return OK; }