summaryrefslogtreecommitdiff
path: root/inc/wb.h
blob: b1d65f7bb21183c49820918dbc9aa5e5b87eb7b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef WB_H
#define WB_H
#include "response.h"
#include "stage.h"
#include "instrDTO.h"

class WB : public Stage
{
  public:
	using Stage::Stage;

	Response advance(InstrDTO &i) override;
};

#endif /* WB_H_INCLUDED */