This repository has been archived on 2026-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2013-08-31 10:44:35 +02:00

37 lines
585 B
C++

#ifndef HIVECLIENTCORE_H
#define HIVECLIENTCORE_H
#include <QObject>
#include <QQmlApplicationEngine>
#include <QQuickWindow>
#include "client.h"
#include "settings.h"
class HiveClientCore : public QObject
{
Q_OBJECT
public:
explicit HiveClientCore(QObject *parent = 0);
private:
Client *m_client;
Settings *m_settings;
QQmlApplicationEngine *m_engine;
QObject *topLevel;
int m_id;
private slots:
void onConnected();
void sendSomething(QString deviceName, QString method);
signals:
public slots:
};
#endif // HIVECLIENTCORE_H