summaryrefslogtreecommitdiff
path: root/inc/mm.h
blob: edee589be58dab8b7d084f027cde4c8f88128f83 (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 &i, Response p) override;
};

#endif /* MM_H_INCLUDED */