Diag: new constructor for DCMachineEvent

This commit is contained in:
2025-06-12 08:32:44 +02:00
parent ccc1c6033f
commit ccc2b8120d
2 changed files with 15 additions and 1 deletions

View File

@@ -78,7 +78,7 @@ namespace DeviceController {
class DCMachineEvent {
public:
DCMachineEvent() = default;
DCMachineEvent(DeviceController::State state, const QString& id) : state(state), eventId(id) {}
DCMachineEvent(DeviceController::State state);
DeviceController::State state;
QString eventId;