58 lines
1.6 KiB
C++
58 lines
1.6 KiB
C++
/*
|
|
* This file is part of qtzeroconf. (c) 2012 Johannes Hilden
|
|
* https://github.com/johanneshilden/qtzeroconf
|
|
*
|
|
* Modified: (C) 2016 Simon Stürz <stuerz.simon@gmail.com>
|
|
*
|
|
* qtzeroconf is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU Lesser General Public License as
|
|
* published by the Free Software Foundation; either version 2.1 of the
|
|
* License, or (at your option) any later version.
|
|
*
|
|
* qtzeroconf is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
|
|
* Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with qtzeroconf; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
|
|
*/
|
|
|
|
#ifndef ZCONFSERVICEBROWSER_H
|
|
#define ZCONFSERVICEBROWSER_H
|
|
|
|
#include <QObject>
|
|
#include <stdint-gcc.h>
|
|
#include <avahi-client/lookup.h>
|
|
|
|
#include "avahiserviceentry.h"
|
|
|
|
class ZConfServiceBrowserPrivate;
|
|
class ZConfServiceBrowser : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ZConfServiceBrowser(QObject *parent = 0);
|
|
~ZConfServiceBrowser();
|
|
|
|
void browse(QString serviceType = "_http._tcp");
|
|
AvahiServiceEntry serviceEntry(QString name);
|
|
|
|
signals:
|
|
void serviceEntryAdded(QString);
|
|
void serviceEntryRemoved(QString);
|
|
|
|
protected slots:
|
|
void createServiceBrowser();
|
|
|
|
protected:
|
|
ZConfServiceBrowserPrivate *const d_ptr;
|
|
|
|
private:
|
|
Q_DECLARE_PRIVATE(ZConfServiceBrowser)
|
|
};
|
|
|
|
#endif // ZCONFSERVICEBROWSER_H
|