diff options
author | bd <bdunahu@operationnull.com> | 2025-04-25 21:19:10 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-04-25 21:19:10 -0400 |
commit | f3e6d5ed8acdeb3f5eccffb5aeeab2e7b040908c (patch) | |
tree | 347eca77379539a027ebec9ed206a45031c9e371 /gui/worker.h | |
parent | a3528b83dd10fa9cdf7ef5635f615c1b295f3f4c (diff) |
Separate update method for worker into its own method
Diffstat (limited to 'gui/worker.h')
-rw-r--r-- | gui/worker.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gui/worker.h b/gui/worker.h index 072263a..06e4a16 100644 --- a/gui/worker.h +++ b/gui/worker.h @@ -78,6 +78,13 @@ class Worker : public QObject void mm_info(const InstrDTO *); void wb_info(const InstrDTO *); void finished(); + + private: + /** + * Sets the GUI signals to update the storage, clock cycle, and stage + * displays. + */ + void update(); }; #endif // WORKER_H |