blob: e9d04d5f128e545b656a61773afa4c192814c1e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef MM_H
#define MM_H
#include "response.h"
#include "stage.h"
class MM : public Stage
{
public:
using Stage::Stage;
Response advance();
};
#endif /* MM_H_INCLUDED */
|