WARNING: USE THIS SOFTWARE AT YOUR OWN RISK! THIS IS EXPERIMENTAL SOFTWARE NOT INTENDED FOR PRODUCTION USE! Zuble is currently an early stage prototype. As such Zuble is minimally tested and inherently unstable. It is provided for experimental, development, and demonstration purposes only. Zuble QML Types   |  Zuble C++ Classes   |  Zuble Overview
Zuble  0.1
Zuble Framework C++/QML extension API
zbldatabase_plugin.h
Go to the documentation of this file.
1 #ifndef ZBLDATABASE_PLUGIN_H
2 #define ZBLDATABASE_PLUGIN_H
3 
4 #include <QQmlExtensionPlugin>
5 
6 namespace Zbl
7 {
8 
13 class ZbldatabasePlugin : public QQmlExtensionPlugin
14 {
15  Q_OBJECT
16  Q_PLUGIN_METADATA(IID "org.zuble.sprocket.zbldatabase"
17  FILE "zbldatabase-metadata.json")
18 
19 public:
20  void registerTypes(const char *uri);
21 
22 };
23 
24 } // Zbl
25 
26 #endif // ZBLDATABASE_PLUGIN_H
27 
The QML extension plugin class for the database sprocket.
Definition: ZAndGate.cpp:6