/* SPDX-FileCopyrightText: 2019 Casper Meijn * SPDX-License-Identifier: GPL-3.0-or-later * */ #ifndef ONVIFDISCOVER_H #define ONVIFDISCOVER_H #include class WSDiscoveryClient; class WSDiscoveryProbeJob; class WSDiscoveryTargetService; class WSDiscoveryServiceAggregator; class OnvifDiscover : public QObject { Q_OBJECT public: explicit OnvifDiscover(QObject *parent = nullptr); ~OnvifDiscover(); public Q_SLOTS: void start(); private Q_SLOTS: void matchReceived(const QSharedPointer &matchedService); private: WSDiscoveryClient *m_client; WSDiscoveryProbeJob *m_probeJob; WSDiscoveryServiceAggregator *m_aggregator; }; #endif // ONVIFDISCOVER_H