- Added CDBusServer into Blackcore library
- Added DBus server and client sample
This commit is contained in:
Roland Winklmeier
2013-07-22 22:44:00 +02:00
parent 1c5293f38f
commit 40abcf4c19
28 changed files with 729 additions and 1 deletions

View File

@@ -0,0 +1,20 @@
#ifndef FSDCLIENT_H
#define FSDCLIENT_H
#include <QObject>
class CFsdClient : public QObject
{
Q_OBJECT
public:
CFsdClient(QObject *parent = 0);
void connectTo(const QString &host);
signals:
public slots:
};
#endif // FSDCLIENT_H