blob: 46f5417c0cc45c0e03ff80e50afbc398307d6768 (
plain)
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 &i) { return OK; }
|