ExplorationWorker.hpp
1 #pragma once
2 #include <Device/Node/DeviceNode.hpp>
3 
4 #include <QObject>
5 #include <QString>
6 
7 #include <verdigris>
8 
9 namespace Device
10 {
11 class DeviceInterface;
12 }
13 
14 namespace Explorer
15 {
22 class ExplorationWorker final : public QObject
23 {
24  W_OBJECT(ExplorationWorker)
25 public:
27  Device::Node node; // Result
28 
30 
31 public:
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