diff options
Diffstat (limited to 'inc/mm.h')
-rw-r--r-- | inc/mm.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/inc/mm.h b/inc/mm.h new file mode 100644 index 0000000..e9d04d5 --- /dev/null +++ b/inc/mm.h @@ -0,0 +1,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 */ |