diff options
Diffstat (limited to 'inc/mm.h')
-rw-r--r-- | inc/mm.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,6 @@ #ifndef MM_H #define MM_H +#include "instrDTO.h" #include "response.h" #include "stage.h" @@ -8,7 +9,7 @@ class MM : public Stage public: using Stage::Stage; - Response advance(); + Response advance(InstrDTO &i) override; }; #endif /* MM_H_INCLUDED */ |