MiniDisplay/minidisplay_plugin.h
author sl
Wed, 04 Jun 2014 18:30:37 +0200
changeset 33 cf5eba52cb1d
permissions -rw-r--r--
Marquee loop can now be paused and resumed.
Cleaning up our MiniDisplay coneection to render loop API.
     1 #ifndef MINIDISPLAY_PLUGIN_H
     2 #define MINIDISPLAY_PLUGIN_H
     3 
     4 #include <QQmlExtensionPlugin>
     5 
     6 class MiniDisplayPlugin : public QQmlExtensionPlugin
     7 {
     8     Q_OBJECT
     9     Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QQmlExtensionInterface")
    10 
    11 public:
    12     void registerTypes(const char *uri);
    13 };
    14 
    15 #endif // MINIDISPLAY_PLUGIN_H
    16