summaryrefslogtreecommitdiffstats
path: root/framework/src/accounts
diff options
context:
space:
mode:
Diffstat (limited to 'framework/src/accounts')
-rw-r--r--framework/src/accounts/accountfactory.h3
-rw-r--r--framework/src/accounts/accountsmodel.h4
2 files changed, 4 insertions, 3 deletions
diff --git a/framework/src/accounts/accountfactory.h b/framework/src/accounts/accountfactory.h
index 429559a1..34293bb2 100644
--- a/framework/src/accounts/accountfactory.h
+++ b/framework/src/accounts/accountfactory.h
@@ -19,13 +19,14 @@
19 19
20#pragma once 20#pragma once
21 21
22#include "kube_export.h"
22#include <QObject> 23#include <QObject>
23#include <QVariant> 24#include <QVariant>
24 25
25/** 26/**
26 * A factory to instantiate account-plugins. 27 * A factory to instantiate account-plugins.
27 */ 28 */
28class AccountFactory : public QObject 29class KUBE_EXPORT AccountFactory : public QObject
29{ 30{
30 Q_OBJECT 31 Q_OBJECT
31 Q_PROPERTY(QString accountId MEMBER mAccountId WRITE setAccountId); 32 Q_PROPERTY(QString accountId MEMBER mAccountId WRITE setAccountId);
diff --git a/framework/src/accounts/accountsmodel.h b/framework/src/accounts/accountsmodel.h
index 4991f7e0..dd9a1c0c 100644
--- a/framework/src/accounts/accountsmodel.h
+++ b/framework/src/accounts/accountsmodel.h
@@ -18,7 +18,7 @@
18*/ 18*/
19 19
20#pragma once 20#pragma once
21 21#include "kube_export.h"
22#include <QObject> 22#include <QObject>
23#include <QIdentityProxyModel> 23#include <QIdentityProxyModel>
24#include <QSharedPointer> 24#include <QSharedPointer>
@@ -28,7 +28,7 @@ namespace Sink {
28 class Query; 28 class Query;
29} 29}
30 30
31class AccountsModel : public QIdentityProxyModel 31class KUBE_EXPORT AccountsModel : public QIdentityProxyModel
32{ 32{
33 Q_OBJECT 33 Q_OBJECT
34 34