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

class EX : public Stage
{
  public:
	/**
	 * Constructor.
	 * @param The next stage in the pipeline.
	 * @return A newly allocated EX object.
	 */
	EX(Stage *next);

	InstrDTO *advance(Response p) override;
};

#endif /* EX_H_INCLUDED */