File indexing completed on 2024-05-05 03:50:35

0001 // SPDX-License-Identifier: LGPL-2.1-or-later
0002 //
0003 // SPDX-FileCopyrightText: 2009 Eckhart Wörner <ewoerner@kde.org>
0004 //
0005 
0006 #ifndef GEOCUTE_MASTERCLIENT_P_H
0007 #define GEOCUTE_MASTERCLIENT_P_H
0008 
0009 #include "MasterClient.h"
0010 
0011 #include <QString>
0012 
0013 #include "SimpleDBusInterface.h"
0014 
0015 
0016 
0017 static const QString serviceName = "org.freedesktop.Geoclue.Master";
0018 static const QString interfaceName = "org.freedesktop.Geoclue.MasterClient";
0019 static const QString masterInterfaceName = "org.freedesktop.Geoclue.Master";
0020 static const QString masterPathName = "/org/freedesktop/Geoclue/Master";
0021 
0022 static QString createClientPath();
0023 
0024 class GeoCute::MasterClient::Private
0025 {
0026     public:
0027         Private();
0028         
0029         SimpleDBusInterface interface;
0030 };
0031 
0032 
0033 
0034 #endif