summaryrefslogtreecommitdiff
path: root/inc/mm.h
blob: cee3f17c4bf8e547a7b15e5f7824dc105653bf91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#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);
	using Stage::advance;

  private:
	void advance_helper() override;
};

#endif /* MM_H_INCLUDED */