signal working version

This commit is contained in:
aljazbrodar. 2025-12-11 07:02:47 +01:00
parent d40c23038a
commit 87b9c1dc62
11 changed files with 387 additions and 379 deletions

View file

@ -2,7 +2,7 @@
#include "machine.h"
#include<chrono>
#include<thread>
#include <QCoreApplication>
Executor::Executor() {}
Executor::Executor(Machine* m) {
@ -27,6 +27,7 @@ void Executor::start() {
break;
}
std::this_thread::sleep_for(std::chrono::milliseconds(500));
QCoreApplication::processEvents();
}
}