1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
#ifndef WB_H #define WB_H #include "instrDTO.h" #include "response.h" #include "stage.h" class WB : public Stage { public: /** * Constructor. * @param The next stage in the pipeline. * @return A newly allocated WB object. */ WB(Stage *next); using Stage::advance; private: void advance_helper() override; }; #endif /* WB_H_INCLUDED */