25#include "traffic/ConnectionInfo.h"
84 [[nodiscard]] QString
error()
const {
return m_error; }
90 [[nodiscard]]
bool scanning()
const {
return m_isScanning; }
137 void setDevices(
const QList<Traffic::ConnectionInfo>& newConnectionInfos);
140 void setError(
const QString& newError);
143 void setIsScanning(
bool newScanning);
147 QList<Traffic::ConnectionInfo> m_connectionInfos;
153 bool m_isScanning {
false};
Connection to a traffic data receiver.
QList< Traffic::ConnectionInfo > connectionInfos
List of device connections found in the scanning process.
void connectionDiscovered(const Traffic::ConnectionInfo &info)
This signal to indicate whenever a device has been discovered.
bool scanning() const
Getter method for property with the same name.
void errorChanged()
Notifier signal.
virtual void start()=0
Start scan process.
void scanningChanged()
Notifier signal.
QString error
Errors encountered during the scanning process.
ConnectionScanner_Abstract(QObject *parent=nullptr)
Constructor.
void scanFinished()
Scan finished.
virtual void stop()=0
Stop scan process.
bool scanning
Indicator if scan is in progress.
void connectionInfosChanged()
Notifier signal.
QString error() const
Getter method for property with the same name.