diff options
Diffstat (limited to 'inc/id.h')
-rw-r--r-- | inc/id.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/inc/id.h b/inc/id.h new file mode 100644 index 0000000..dcfda82 --- /dev/null +++ b/inc/id.h @@ -0,0 +1,14 @@ +#ifndef ID_H +#define ID_H +#include "response.h" +#include "stage.h" + +class ID : public Stage +{ + public: + using Stage::Stage; + + Response advance(); +}; + +#endif /* ID_D_INCLUDED */ |