blob: 8b4de2168552ce85dd99191a1129338eb3f32e88 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include "myplugin.h"
#include "mytype.h"
#include <qqml.h>
void MyPlugin::registerTypes(const char *uri)
{
// @uri mymodule
// bp here should be hit on startup
qmlRegisterType<MyType>(uri, 1, 0, "MyType");
}
|