- 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,13 @@
#include <QDebug>
#include "fsdclient.h"
CFsdClient::CFsdClient(QObject *parent) :
QObject(parent)
{
}
void CFsdClient::connectTo(const QString &host)
{
qDebug() << "Client requests to connect to " << host;
}