1234567891011 |
- #include <qqml.h>
- #include "plugin.h"
- #include "sqldatabase.h"
- void SqlDatabasePlugin::registerTypes(const char *uri)
- {
- // @uri gfa.plugins.qml
- qmlRegisterType<SqlDatabase>(uri, 1, 0, "SqlDatabase");
- qmlRegisterUncreatableType<SqlQuery>(uri, 1, 0, "SqlQuery", "return type only");
- }
|