mirror of https://github.com/nymea/nymea.git
53 lines
2.1 KiB
C++
53 lines
2.1 KiB
C++
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
* *
|
|
* Copyright (C) 2017 Michael Zanetti <michael.zanetti@guh.io> *
|
|
* Copyright (C) 2018 Simon Stürz <simon.stuerz@guh.io> *
|
|
* *
|
|
* This file is part of nymea. *
|
|
* *
|
|
* nymea is free software: you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation, version 2 of the License. *
|
|
* *
|
|
* nymea is distributed in the hope that it will be useful, *
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
* GNU General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU General Public License *
|
|
* along with nymea. If not, see <http://www.gnu.org/licenses/>. *
|
|
* *
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
#ifndef NYMEADBUSSERVICE_H
|
|
#define NYMEADBUSSERVICE_H
|
|
|
|
#include <QObject>
|
|
#include <QDBusConnection>
|
|
#include <QDBusContext>
|
|
|
|
class NymeaDBusService : public QObject
|
|
{
|
|
Q_OBJECT
|
|
Q_CLASSINFO("D-Bus Interface", "io.guh.nymead")
|
|
|
|
public:
|
|
explicit NymeaDBusService(const QString &objectPath, QObject *parent = nullptr);
|
|
|
|
static void setBusType(QDBusConnection::BusType busType);
|
|
|
|
bool isValid();
|
|
|
|
protected:
|
|
QDBusConnection connection() const;
|
|
|
|
private:
|
|
static QDBusConnection::BusType s_busType;
|
|
QDBusConnection m_connection;
|
|
bool m_isValid = false;
|
|
|
|
};
|
|
|
|
|
|
#endif // NYMEADBUSSERVICE_H
|