Add CLASSINFO() to enumerate supported interfaces.
This commit is contained in:
parent
2efdbe2d68
commit
88670c1079
@ -15,6 +15,7 @@ class ATBVMCPlugin : public VMCInterface {
|
|||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
Q_INTERFACES(VMCInterface)
|
Q_INTERFACES(VMCInterface)
|
||||||
|
Q_CLASSINFO("Interface", "VMCInterface")
|
||||||
|
|
||||||
#if QT_VERSION >= 0x050000
|
#if QT_VERSION >= 0x050000
|
||||||
Q_PLUGIN_METADATA(IID "eu.atb.ptu.plugin.ATBVMCPlugin")
|
Q_PLUGIN_METADATA(IID "eu.atb.ptu.plugin.ATBVMCPlugin")
|
||||||
@ -42,6 +43,8 @@ public:
|
|||||||
// helpers e.g. for debug / log
|
// helpers e.g. for debug / log
|
||||||
virtual QString const &getString(RESULT_STATE resultState) override;
|
virtual QString const &getString(RESULT_STATE resultState) override;
|
||||||
|
|
||||||
|
QStringList interfaces() const;
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
virtual void onChangedProgramModeToSELL() override;
|
virtual void onChangedProgramModeToSELL() override;
|
||||||
virtual void onChangedProgramModeToSERVICE() override;
|
virtual void onChangedProgramModeToSERVICE() override;
|
||||||
|
@ -14,6 +14,7 @@
|
|||||||
|
|
||||||
class UnifiedDCVMCInterface : public ATBAPPplugin {
|
class UnifiedDCVMCInterface : public ATBAPPplugin {
|
||||||
Q_INTERFACES(ATBAPPplugin)
|
Q_INTERFACES(ATBAPPplugin)
|
||||||
|
Q_CLASSINFO("Interface", "ATBAPPplugin")
|
||||||
|
|
||||||
public:
|
public:
|
||||||
explicit UnifiedDCVMCInterface() = default;
|
explicit UnifiedDCVMCInterface() = default;
|
||||||
|
@ -21,7 +21,8 @@ class VMCInterface : public QObject, public UnifiedDCVMCInterface {
|
|||||||
|
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
Q_INTERFACES(ATBAPPplugin UnifiedDCVMCInterface)
|
Q_INTERFACES(ATBAPPplugin UnifiedDCVMCInterface)
|
||||||
|
Q_CLASSINFO("Interface", "ATBAPPplugin")
|
||||||
|
Q_CLASSINFO("Interface", "UnifiedDCVMCInterface")
|
||||||
public:
|
public:
|
||||||
|
|
||||||
explicit VMCInterface(QObject *parent = nullptr) : QObject(parent) {}
|
explicit VMCInterface(QObject *parent = nullptr) : QObject(parent) {}
|
||||||
|
Loading…
Reference in New Issue
Block a user