Implement initVMCPlugin(), initPlugin().
This commit is contained in:
parent
b1304df2bf
commit
bdf2886aa4
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user