From 5d2bb75fca596b70c82ecc9cfe33bbe50ba7e401 Mon Sep 17 00:00:00 2001 From: Gerhard Hoffmann Date: Thu, 16 Nov 2023 08:38:13 +0100 Subject: [PATCH] Extend enums in nsDeviceControllerInterface. --- src/ATBAPP/DeviceControllerInterface.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/ATBAPP/DeviceControllerInterface.h b/src/ATBAPP/DeviceControllerInterface.h index 2b70da8..bba8977 100644 --- a/src/ATBAPP/DeviceControllerInterface.h +++ b/src/ATBAPP/DeviceControllerInterface.h @@ -10,10 +10,10 @@ #include "UnifiedDCVMCInterface.h" namespace nsDeviceControllerInterface { - using PLUGIN_STATE = UnifiedDCVMCInterface::PLUGIN_STATE; - using RESULT_STATE = UnifiedDCVMCInterface::RESULT_STATE; - using CASH_STATE = UnifiedDCVMCInterface::CASH_STATE; - using TICKET_VARIANT = UnifiedDCVMCInterface::TICKET_VARIANT; + using PLUGIN_STATE = ATBAPPplugin::PLUGIN_STATE; + using RESULT_STATE = ATBAPPplugin::RESULT_STATE; + using CASH_STATE = ATBAPPplugin::CASH_STATE; + using TICKET_VARIANT = ATBAPPplugin::TICKET_VARIANT; } class DeviceControllerInterface : public UnifiedDCVMCInterface