summaryrefslogtreecommitdiff
path: root/inc/ex.h
diff options
context:
space:
mode:
Diffstat (limited to 'inc/ex.h')
-rw-r--r--inc/ex.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/inc/ex.h b/inc/ex.h
index f9b2f78..e67980d 100644
--- a/inc/ex.h
+++ b/inc/ex.h
@@ -7,9 +7,14 @@
class EX : public Stage
{
public:
- using Stage::Stage;
+ /**
+ * Constructor.
+ * @param The next stage in the pipeline.
+ * @return A newly allocated EX object.
+ */
+ EX(Stage *next);
- Response advance(InstrDTO &i) override;
+ Response advance(InstrDTO &next_instr, Response p) override;
};
#endif /* EX_H_INCLUDED */