summaryrefslogtreecommitdiff
path: root/inc/mm.h
blob: 90ebe5a4f666fe5cd2f2918dd36a8e5eaa334316 (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) override;
};

#endif /* MM_H_INCLUDED */