diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2016-01-04 23:24:43 +0100 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2016-01-05 13:41:40 +0100 |
commit | 021dde561b5ce86820013c681ff554b07590b052 (patch) | |
tree | b9d0b3b08efff6bd011544ef124c00ddec10012c /framework/actions/actionplugin.h | |
parent | dd09ca9ef4bb9780b953d6dd2999dbefe50bd1ff (diff) | |
download | kube-021dde561b5ce86820013c681ff554b07590b052.tar.gz kube-021dde561b5ce86820013c681ff554b07590b052.zip |
Prototype of the action system
Diffstat (limited to 'framework/actions/actionplugin.h')
-rw-r--r-- | framework/actions/actionplugin.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/framework/actions/actionplugin.h b/framework/actions/actionplugin.h new file mode 100644 index 00000000..e276da3b --- /dev/null +++ b/framework/actions/actionplugin.h | |||
@@ -0,0 +1,13 @@ | |||
1 | #pragma once | ||
2 | |||
3 | #include <QQmlEngine> | ||
4 | #include <QQmlExtensionPlugin> | ||
5 | |||
6 | class KubePlugin : public QQmlExtensionPlugin | ||
7 | { | ||
8 | Q_OBJECT | ||
9 | Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QQmlExtensionInterface") | ||
10 | |||
11 | public: | ||
12 | virtual void registerTypes(const char *uri); | ||
13 | }; | ||