1 | /* |
2 | This file is part of the KDE project |
3 | |
4 | SPDX-FileCopyrightText: 2004 Jakub Stachowski <qbast@go2.pl> |
5 | |
6 | SPDX-License-Identifier: LGPL-2.0-or-later |
7 | */ |
8 | |
9 | #include "domainbrowser.h" |
10 | #include <QStringList> |
11 | |
12 | namespace KDNSSD |
13 | { |
14 | class DomainBrowserPrivate |
15 | { |
16 | }; |
17 | |
18 | DomainBrowser::DomainBrowser(DomainType, QObject *parent) |
19 | : QObject(parent) |
20 | , d(nullptr) |
21 | { |
22 | } |
23 | |
24 | DomainBrowser::~DomainBrowser() |
25 | { |
26 | } |
27 | |
28 | void DomainBrowser::startBrowse() |
29 | { |
30 | } |
31 | |
32 | QStringList DomainBrowser::domains() const |
33 | { |
34 | return QStringList(); |
35 | } |
36 | |
37 | bool DomainBrowser::isRunning() const |
38 | { |
39 | return false; |
40 | } |
41 | |
42 | } |
43 | #include "moc_domainbrowser.cpp" |
44 | |