diff options
author | bd <bdunahu@operationnull.com> | 2025-04-25 21:12:58 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-04-25 21:12:58 -0400 |
commit | a3528b83dd10fa9cdf7ef5635f615c1b295f3f4c (patch) | |
tree | d4b3836a433dcb4e5a9615a8a1477b2901358451 /gui/worker.h | |
parent | 9ef2928aefd0983c7b3b04023c0b958b86dd77ff (diff) |
Pass full DTO to GUI
Diffstat (limited to 'gui/worker.h')
-rw-r--r-- | gui/worker.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gui/worker.h b/gui/worker.h index 95c81d5..072263a 100644 --- a/gui/worker.h +++ b/gui/worker.h @@ -72,11 +72,11 @@ class Worker : public QObject void storage(const std::vector<std::array<signed int, LINE_SIZE>> data, int i); void register_storage(const std::array<int, GPR_NUM> data); - void if_info(const std::vector<int> info); - void id_info(const std::vector<int> info); - void ex_info(const std::vector<int> info); - void mm_info(const std::vector<int> info); - void wb_info(const std::vector<int> info); + void if_info(const InstrDTO *); + void id_info(const InstrDTO *); + void ex_info(const InstrDTO *); + void mm_info(const InstrDTO *); + void wb_info(const InstrDTO *); void finished(); }; |