KDNSSD

dummy-remoteservice.cpp
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(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"
RemoteService(const QString &name, const QString &type, const QString &domain)
Creates an unresolved RemoteService representing the service with the given name, type and domain.
Type type(const QSqlDatabase &db)
QString name(StandardShortcut id)
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:17:48 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.