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

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

	Response advance(InstrDTO &i) override;
};

#endif /* ID_D_INCLUDED */