mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-23 15:25:35 +08:00
22 lines
489 B
C++
22 lines
489 B
C++
#ifndef SAMPLEPLUGIN_H
|
|
#define SAMPLEPLUGIN_H
|
|
|
|
#include <QObject>
|
|
#include <QDebug>
|
|
#include <QDBusMetaType>
|
|
#include <QMetaType>
|
|
#include "../blackmiscquantities_dbus/dummy.h"
|
|
#include "../blackmiscquantities_dbus/dummynoq.h"
|
|
|
|
class CXmlSamplePlugin : public QObject, public QDBusCpp2XmlPlugin
|
|
{
|
|
Q_OBJECT
|
|
Q_INTERFACES(QDBusCpp2XmlPlugin)
|
|
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.DBus.Cpp2XmlPlugin")
|
|
|
|
public:
|
|
virtual void registerMetaTypes();
|
|
};
|
|
|
|
#endif // SAMPLEPLUGIN_H
|