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

class MM : public Stage
{
  public:
	using Stage::Stage;

	Response advance(InstrDTO &i) override;
};

#endif /* MM_H_INCLUDED */