diff options
author | bd <bdunahu@operationnull.com> | 2025-04-22 20:49:26 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-04-22 20:49:26 -0400 |
commit | 95d09e12792cf5ececd32b8dc84f2cd090c496ef (patch) | |
tree | 8660a5fba2e60df5d34712383d727ad46809307d /inc/if.h | |
parent | 1bbc5b157e16dae032b5e44a7dcf009766eb9ca5 (diff) |
Remove the accessor object
Diffstat (limited to 'inc/if.h')
-rw-r--r-- | inc/if.h | 8 |
1 files changed, 1 insertions, 7 deletions
@@ -17,7 +17,6 @@ #ifndef IF_H #define IF_H -#include "accessor.h" #include "instrDTO.h" #include "response.h" #include "stage.h" @@ -25,12 +24,7 @@ class IF : public Stage { public: - /** - * Constructor. - * @param The next stage in the pipeline. - * @return A newly allocated IF object. - */ - IF(Stage *next); + using Stage::Stage; InstrDTO *advance(Response p) override; |