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

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

	Response advance(InstrDTO &next_instr, Response p) override;
};

#endif /* MM_H_INCLUDED */