summaryrefslogtreecommitdiff
path: root/inc/mm.h
blob: 608180265b8d761ccef0135166d4978b6d2b45d8 (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);

	InstrDTO *advance(Response p) override;
};

#endif /* MM_H_INCLUDED */