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.
Simon Stuerz 59c1157e57 client added, connection over tcp works
to do now: communication protocoll for json
2013-08-22 11:43:38 +02:00

27 lines
385 B
C++

#ifndef HIVECLIENTCORE_H
#define HIVECLIENTCORE_H
#include <QObject>
#include "qtquick2applicationviewer.h"
#include "client.h"
class HiveClientCore : public QObject
{
Q_OBJECT
public:
explicit HiveClientCore(QObject *parent = 0);
private:
Client *m_client;
QtQuick2ApplicationViewer *m_viewer;
signals:
public slots:
};
#endif // HIVECLIENTCORE_H