1 | /* |
2 | This file is part of the KDE project |
3 | |
4 | SPDX-FileCopyrightText: 2004, 2005 Jakub Stachowski <qbast@go2.pl> |
5 | |
6 | SPDX-License-Identifier: LGPL-2.0-or-later |
7 | */ |
8 | |
9 | #include "remoteservice.h" |
10 | #include <QDataStream> |
11 | |
12 | namespace KDNSSD |
13 | { |
14 | RemoteService::RemoteService(const QString &name, const QString &type, const QString &domain) |
15 | : ServiceBase(name, type, domain) |
16 | { |
17 | } |
18 | |
19 | RemoteService::~RemoteService() |
20 | { |
21 | } |
22 | |
23 | bool RemoteService::resolve() |
24 | { |
25 | return false; |
26 | } |
27 | |
28 | void RemoteService::resolveAsync() |
29 | { |
30 | Q_EMIT resolved(successful: false); |
31 | } |
32 | |
33 | bool RemoteService::isResolved() const |
34 | { |
35 | return false; |
36 | } |
37 | |
38 | void RemoteService::virtual_hook(int, void *) |
39 | { |
40 | // BASE::virtual_hook(int, void*); |
41 | } |
42 | |
43 | } |
44 | |
45 | #include "moc_remoteservice.cpp" |
46 | |