Warning: That file was not part of the compilation database. It may have many parsing errors.

1/* This file is part of the KDE project
2 *
3 * Copyright (C) 2004 Jakub Stachowski <qbast@go2.pl>
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details.
14 *
15 * You should have received a copy of the GNU Library General Public License
16 * along with this library; see the file COPYING.LIB. If not, write to
17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 * Boston, MA 02110-1301, USA.
19 */
20
21#ifndef MDNSD_SERVICEBROWSER_P_H
22#define MDNSD_SERVICEBROWSER_P_H
23
24#include <QtCore/QObject>
25#include <QtCore/QTimer>
26
27#include "mdnsd-responder.h"
28#include "servicebrowser.h"
29
30namespace DNSSD
31{
32
33class ServiceBrowserPrivate : public Responder
34{
35Q_OBJECT
36public:
37 ServiceBrowserPrivate(ServiceBrowser* parent) : Responder(), m_parent(parent)
38 {}
39 QList<RemoteService::Ptr> m_services;
40 QList<RemoteService::Ptr> m_duringResolve;
41 QString m_type;
42 QString m_domain;
43 QString m_subtype;
44 bool m_autoResolve;
45 bool m_finished;
46 ServiceBrowser* m_parent;
47 QTimer timeout;
48
49 // get already found service identical to s or null if not found
50 RemoteService::Ptr find(RemoteService::Ptr s, const QList<RemoteService::Ptr>& where) const;
51 virtual void customEvent(QEvent* event);
52public Q_SLOTS:
53 void queryFinished();
54 void serviceResolved(bool success);
55 void onTimeout();
56};
57
58}
59
60#endif
61

Warning: That file was not part of the compilation database. It may have many parsing errors.