MiniDisplay/minidisplay_plugin.h
changeset 2 780ee91f4ffb
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/MiniDisplay/minidisplay_plugin.h	Tue May 27 17:14:22 2014 +0200
     1.3 @@ -0,0 +1,16 @@
     1.4 +#ifndef MINIDISPLAY_PLUGIN_H
     1.5 +#define MINIDISPLAY_PLUGIN_H
     1.6 +
     1.7 +#include <QQmlExtensionPlugin>
     1.8 +
     1.9 +class MiniDisplayPlugin : public QQmlExtensionPlugin
    1.10 +{
    1.11 +    Q_OBJECT
    1.12 +    Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QQmlExtensionInterface")
    1.13 +
    1.14 +public:
    1.15 +    void registerTypes(const char *uri);
    1.16 +};
    1.17 +
    1.18 +#endif // MINIDISPLAY_PLUGIN_H
    1.19 +