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

class EX : public Stage
{
  public:
	using Stage::Stage;

	Response advance(InstrDTO &i) override;
};

#endif /* EX_H_INCLUDED */