aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/debugger/qquick2/myplugin/myplugin.h
blob: fd741b8d3c7ed7eb778716f1ca866e146226b7bb (plain)
1
2
3
4
5
6
7
8
9
10
11
#pragma once

#include <QQmlExtensionPlugin>

class MyPlugin : public QQmlExtensionPlugin
{
    Q_OBJECT
    Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QQmlExtensionInterface")
public:
    void registerTypes(const char *uri);
};