Implement initVMCPlugin(), initPlugin().

This commit is contained in:
Gerhard Hoffmann 2023-11-16 08:45:47 +01:00
parent b1304df2bf
commit bdf2886aa4

View File

@ -68,6 +68,32 @@ ATBDeviceControllerPlugin::ATBDeviceControllerPlugin(QObject *parent)
ATBDeviceControllerPlugin::~ATBDeviceControllerPlugin() {}
PLUGIN_STATE ATBDeviceControllerPlugin::initVMCPlugin(QObject *eventReceiver,
QObject *atbSystem,
QObject *hmiConfig,
const QSettings &settings) {
Q_UNUSED(eventReceiver);
Q_UNUSED(atbSystem);
Q_UNUSED(hmiConfig);
Q_UNUSED(settings);
return PLUGIN_STATE::NOT_INITIALIZED;
}
PLUGIN_STATE ATBDeviceControllerPlugin::initPlugin(QObject *eventReceiver,
QObject *atbSystem,
QObject *hmiConfig,
QSettings const &settings) {
Q_UNUSED(atbSystem);
Q_UNUSED(hmiConfig);
return initDCPlugin(eventReceiver, settings);
}
PLUGIN_STATE ATBDeviceControllerPlugin::initPlugin(QObject *eventReceiver, QSettings const &settings) {
return initDCPlugin(eventReceiver, settings);
}
PLUGIN_STATE ATBDeviceControllerPlugin::initDCPlugin(QObject *eventReceiver, const QSettings & settings)
{
this->eventReceiver = eventReceiver;