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

class ID : public Stage
{
  public:
	using Stage::Stage;

	Response advance(InstrDTO &i) override;
};

#endif /* ID_D_INCLUDED */