refs #248 added an instance of CDBusServer as member of XBus::CPlugin

This commit is contained in:
Mathew Sutcliffe
2014-06-14 20:27:22 +01:00
parent 13f9d8c343
commit d5e527ba16
3 changed files with 17 additions and 2 deletions

View File

@@ -10,7 +10,12 @@
//! \namespace XBus
#include <QObject>
#define NOMINMAX
#pragma push_macro("interface")
#undef interface
#include "blackcore/dbus_server.h"
#pragma pop_macro("interface")
namespace XBus
{
@@ -25,6 +30,9 @@ namespace XBus
CPlugin();
private:
BlackCore::CDBusServer *m_server = nullptr;
void startServer(const QString &address);
};
}