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
12namespace KDNSSD
13{
14RemoteService::RemoteService(const QString &name, const QString &type, const QString &domain)
15 : ServiceBase(name, type, domain)
16{
17}
18
19RemoteService::~RemoteService()
20{
21}
22
23bool RemoteService::resolve()
24{
25 return false;
26}
27
28void RemoteService::resolveAsync()
29{
30 Q_EMIT resolved(successful: false);
31}
32
33bool RemoteService::isResolved() const
34{
35 return false;
36}
37
38void RemoteService::virtual_hook(int, void *)
39{
40 // BASE::virtual_hook(int, void*);
41}
42
43}
44
45#include "moc_remoteservice.cpp"
46

source code of kdnssd/src/dummy-remoteservice.cpp