aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/debugger/qquick2/myplugin/myplugin.h
blob: 334e635fc34df106c446f3fda900bb9229178563 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef MYPLUGIN_H
#define MYPLUGIN_H

#include <QtDeclarative/qdeclarative.h>
#include <QtDeclarative/QDeclarativeExtensionPlugin>

class MyPlugin : public QDeclarativeExtensionPlugin
{
    Q_OBJECT

public:
    void registerTypes(const char *uri);
};

#endif // MYPLUGIN_H