Loading...
Searching...
No Matches
ExplorationWorker.hpp
1#pragma once
2#include <Device/Node/DeviceNode.hpp>
3
4#include <QObject>
5#include <QString>
6
7#include <verdigris>
8
9namespace Device
10{
11class DeviceInterface;
12}
13
14namespace Explorer
15{
22class ExplorationWorker final : public QObject
23{
24 W_OBJECT(ExplorationWorker)
25public:
27 Device::Node node; // Result
28
30
31public:
32 void finished() W_SIGNAL(finished);
33 void failed(QString arg_1) W_SIGNAL(failed, arg_1);
34};
35}
Definition DeviceInterface.hpp:66
The ExplorationWorker class.
Definition ExplorationWorker.hpp:23
Manipulation of Devices from Qt.
Definition AddressSettings.cpp:14