blob: 3a1e92c048be5867e842a02b23421d9ed355338a (
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; }
InstrDTO *EX::advance(Response p) { return nullptr; }
|