File indexing completed on 2024-04-28 15:22:06

0001 /*
0002     This file is part of the KDE project
0003 
0004     SPDX-FileCopyrightText: 2004, 2005 Jakub Stachowski <qbast@go2.pl>
0005 
0006     SPDX-License-Identifier: LGPL-2.0-or-later
0007 */
0008 
0009 #include "remoteservice.h"
0010 #include <QDataStream>
0011 
0012 namespace KDNSSD
0013 {
0014 RemoteService::RemoteService(const QString &name, const QString &type, const QString &domain)
0015     : ServiceBase(name, type, domain)
0016 {
0017 }
0018 
0019 RemoteService::~RemoteService()
0020 {
0021 }
0022 
0023 bool RemoteService::resolve()
0024 {
0025     return false;
0026 }
0027 
0028 void RemoteService::resolveAsync()
0029 {
0030     Q_EMIT resolved(false);
0031 }
0032 
0033 bool RemoteService::isResolved() const
0034 {
0035     return false;
0036 }
0037 
0038 void RemoteService::virtual_hook(int, void *)
0039 {
0040     // BASE::virtual_hook(int, void*);
0041 }
0042 
0043 }
0044 
0045 #include "moc_remoteservice.cpp"