summaryrefslogtreecommitdiffstats
path: root/framework/actions/actionplugin.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'framework/actions/actionplugin.cpp')
-rw-r--r--framework/actions/actionplugin.cpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/framework/actions/actionplugin.cpp b/framework/actions/actionplugin.cpp
deleted file mode 100644
index b55504fc..00000000
--- a/framework/actions/actionplugin.cpp
+++ /dev/null
@@ -1,16 +0,0 @@
1#include "actionplugin.h"
2
3#include "action.h"
4#include "context.h"
5#include "actionhandler.h"
6#include "actionresult.h"
7
8#include <QtQml>
9
10void KubePlugin::registerTypes (const char *uri)
11{
12 qmlRegisterType<Kube::Context>(uri, 1, 0, "Context");
13 qmlRegisterType<Kube::Action>(uri, 1, 0, "Action");
14 qmlRegisterType<Kube::ActionHandler>(uri, 1, 0, "ActionHandler");
15 qmlRegisterType<Kube::ActionResult>(uri, 1, 0, "ActionResult");
16}