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