20 lines
301 B
C
20 lines
301 B
C
|
#ifndef CALENDARPLUGIN_H
|
||
|
#define CALENDARPLUGIN_H
|
||
|
|
||
|
|
||
|
|
||
|
#include <QQmlExtensionPlugin>
|
||
|
|
||
|
class QQmlEngine;
|
||
|
|
||
|
class CalendarPlugin : public QQmlExtensionPlugin
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QQmlExtensionInterface")
|
||
|
|
||
|
public:
|
||
|
void registerTypes(const char *uri);
|
||
|
};
|
||
|
|
||
|
#endif
|