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/gui.h | |
parent | 9ef2928aefd0983c7b3b04023c0b958b86dd77ff (diff) |
Pass full DTO to GUI
Diffstat (limited to 'gui/gui.h')
-rw-r--r-- | gui/gui.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -57,15 +57,15 @@ class GUI : public QMainWindow private slots: void on_worker_refresh_gui(int value, int pc); - void onWorkerFetchInfo(const std::vector<int> info); + void onWorkerFetchInfo(const InstrDTO *); - void onWorkerDecodeInfo(const std::vector<int> info); + void onWorkerDecodeInfo(const InstrDTO *); - void onWorkerExecuteInfo(const std::vector<int> info); + void onWorkerExecuteInfo(const InstrDTO *); - void onWorkerMemoryInfo(const std::vector<int> info); + void onWorkerMemoryInfo(const InstrDTO *); - void onWorkerWriteBackInfo(const std::vector<int> info); + void onWorkerWriteBackInfo(const InstrDTO *); void onWorkerShowStorage( const std::vector<std::array<signed int, LINE_SIZE>> data, int i); |