diff options
author | Siddarth Suresh <155843085+SiddarthSuresh98@users.noreply.github.com> | 2025-03-25 12:43:05 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-25 12:43:05 -0400 |
commit | 9eeea1ab8bf4eb17e5da46d57a6c1d455a0a262e (patch) | |
tree | 77f1cccbf29b05493ca5d0e24cbebc606cd90008 /inc/id.h | |
parent | 7ad79d8430ee22b0180e7077fe727153333e47f6 (diff) | |
parent | 9a0b9ed3d77bde99b1f1ba341850117c188f0156 (diff) |
Merge pull request #35 from bdunahu/bdunahu
Add skeleton classes for 5 major pipeline stages
Agree with different classes for each stage
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 */ |