diff options
Diffstat (limited to 'inc/wb.h')
-rw-r--r-- | inc/wb.h | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -7,9 +7,14 @@ class WB : public Stage { public: - using Stage::Stage; + /** + * Constructor. + * @param The next stage in the pipeline. + * @return A newly allocated WB object. + */ + WB(Stage *next); - Response advance(InstrDTO &i) override; + Response advance(InstrDTO &next_instr, Response p) override; }; #endif /* WB_H_INCLUDED */ |