summaryrefslogtreecommitdiff
path: root/inc/wb.h
blob: b8f5d8fb7d24c1eb2ddb1d0869ecc20e4d43b4c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef WB_H
#define WB_H
#include "response.h"
#include "stage.h"
#include "instrDTO.h"

class WB : public Stage
{
  public:
	/**
	 * Constructor.
	 * @param The next stage in the pipeline.
	 * @return A newly allocated WB object.
	 */
	WB(Stage *next);

	Response advance(InstrDTO &i) override;
};

#endif /* WB_H_INCLUDED */