diff options
author | bd <bdunahu@operationnull.com> | 2025-03-24 14:41:13 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-03-24 14:41:13 -0400 |
commit | 9a0b9ed3d77bde99b1f1ba341850117c188f0156 (patch) | |
tree | e8546d59859b3723744e901b51e5448f2b190d7f /inc/id.h | |
parent | 877aa98855fad77ef93a8c9f5a5e8191fbb9e699 (diff) |
Add skeleton classes for 5 major pipeline stages
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 */ |