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

class IF : public Stage
{
  public:
	using Stage::Stage;

	Response advance(InstrDTO &i) override;

  private:
	/**
	 * The name this pipeline stages uses to access storage.
	 */
	const Accessor id = FETCH;
};

#endif /* IF_H_INCLUDED */