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