summaryrefslogtreecommitdiff
path: root/tests/manual/debugger/qquick1/myplugin/myplugin.cpp
blob: 879e5beace72dc2d4fea265a95ca27fca7a57512 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "myplugin.h"
#include "mytype.h"

void MyPlugin::registerTypes(const char *uri)
{
    // @uri mymodule
    // bp here should be hit on startup
    qmlRegisterType<MyType>(uri, 1, 0, "MyType");
}

Q_EXPORT_PLUGIN(MyPlugin)