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