summaryrefslogtreecommitdiffstats
path: root/framework/src/fabric.h
diff options
context:
space:
mode:
Diffstat (limited to 'framework/src/fabric.h')
-rw-r--r--framework/src/fabric.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/framework/src/fabric.h b/framework/src/fabric.h
index 764c42b1..9a060cb9 100644
--- a/framework/src/fabric.h
+++ b/framework/src/fabric.h
@@ -18,6 +18,7 @@
18*/ 18*/
19#pragma once 19#pragma once
20 20
21#include "kube_export.h"
21#include <QObject> 22#include <QObject>
22#include <QVariant> 23#include <QVariant>
23#include <QVector> 24#include <QVector>
@@ -32,7 +33,7 @@ namespace Kube {
32 */ 33 */
33namespace Fabric { 34namespace Fabric {
34 35
35class Fabric : public QObject { 36class KUBE_EXPORT Fabric : public QObject {
36 Q_OBJECT 37 Q_OBJECT
37public: 38public:
38 Q_INVOKABLE void postMessage(const QString &id, const QVariantMap &); 39 Q_INVOKABLE void postMessage(const QString &id, const QVariantMap &);
@@ -48,7 +49,7 @@ public:
48 * } 49 * }
49 * } 50 * }
50 */ 51 */
51class Listener : public QObject 52class KUBE_EXPORT Listener : public QObject
52{ 53{
53 Q_OBJECT 54 Q_OBJECT
54 Q_PROPERTY(QString filter MEMBER mFilter) 55 Q_PROPERTY(QString filter MEMBER mFilter)