summaryrefslogtreecommitdiff
path: root/inc/stage.h
diff options
context:
space:
mode:
authorbd <bdunaisky@umass.edu>2025-04-16 15:56:32 +0000
committerGitHub <noreply@github.com>2025-04-16 15:56:32 +0000
commitb778ccc3e7c2f2ac3c4892a87f5269f342fd895f (patch)
tree481b94886edf89f3bf08d06b96092298d1cdbf8c /inc/stage.h
parent561f7a6e6c24b05383b6db86b48125ee80a8355f (diff)
parentf9e5214e87a935e1311b886e44bdfe1f8bfbdf56 (diff)
Merge pull request #51 from bdunahu/dev-sid
[WIP] Added pipeline to GUI
Diffstat (limited to 'inc/stage.h')
-rw-r--r--inc/stage.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/inc/stage.h b/inc/stage.h
index da33075..1cedac6 100644
--- a/inc/stage.h
+++ b/inc/stage.h
@@ -38,6 +38,8 @@ class Stage
*/
virtual InstrDTO *advance(Response p);
+ virtual std::vector<int> stage_info();
+
/* The following methods are made public so that they may be tested, and are
* not to be called from outside classes during standard execution.
*/
@@ -132,6 +134,7 @@ class Stage
* The current status of this stage.
*/
Response status;
+
};
#endif /* STAGE_H_INCLUDED */