mirror of https://github.com/nymea/nymea.git
55 lines
2.4 KiB
C++
55 lines
2.4 KiB
C++
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
* *
|
|
* Copyright (C) 2016 Simon Stürz <simon.stuerz@guh.guru> *
|
|
* *
|
|
* This file is part of guh. *
|
|
* *
|
|
* Guh 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. *
|
|
* *
|
|
* Guh 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 guh. If not, see <http://www.gnu.org/licenses/>. *
|
|
* *
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
#ifndef CLOUDCONNECTIONHANDLER_H
|
|
#define CLOUDCONNECTIONHANDLER_H
|
|
|
|
#include <QObject>
|
|
|
|
#include "cloudjsonhandler.h"
|
|
|
|
namespace guhserver {
|
|
|
|
class CloudConnectionHandler : public CloudJsonHandler
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit CloudConnectionHandler(QObject *parent = 0);
|
|
|
|
QString nameSpace() const;
|
|
|
|
// API methods
|
|
Q_INVOKABLE void processGetConnections(const QVariantMap ¶ms);
|
|
Q_INVOKABLE void processGetTunnels(const QVariantMap ¶ms);
|
|
Q_INVOKABLE void processSendData(const QVariantMap ¶ms);
|
|
|
|
// API notifications
|
|
Q_INVOKABLE void processConnectionAdded(const QVariantMap ¶ms);
|
|
Q_INVOKABLE void processConnectionRemoved(const QVariantMap ¶ms);
|
|
Q_INVOKABLE void processTunnelAdded(const QVariantMap ¶ms);
|
|
Q_INVOKABLE void processTunnelRemoved(const QVariantMap ¶ms);
|
|
Q_INVOKABLE void processDataReceived(const QVariantMap ¶ms);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif // CLOUDCONNECTIONHANDLER_H
|