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