summaryrefslogtreecommitdiff
path: root/inc/ex.h
diff options
context:
space:
mode:
Diffstat (limited to 'inc/ex.h')
-rw-r--r--inc/ex.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/inc/ex.h b/inc/ex.h
new file mode 100644
index 0000000..c560eda
--- /dev/null
+++ b/inc/ex.h
@@ -0,0 +1,14 @@
+#ifndef EX_H
+#define EX_H
+#include "response.h"
+#include "stage.h"
+
+class EX : public Stage
+{
+ public:
+ using Stage::Stage;
+
+ Response advance();
+};
+
+#endif /* EX_H_INCLUDED */