diff --git a/src/ATBAPP/ATBDeviceControllerPlugin.cpp b/src/ATBAPP/ATBDeviceControllerPlugin.cpp index c282a45..9f4e94e 100644 --- a/src/ATBAPP/ATBDeviceControllerPlugin.cpp +++ b/src/ATBAPP/ATBDeviceControllerPlugin.cpp @@ -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;