From 67967f9a3f8e779d897a66cc6d559783911b2c14 Mon Sep 17 00:00:00 2001 From: Matthew Barth Date: Fri, 22 Sep 2017 12:43:57 -0500 Subject: Generate selected match strings and signals The available matches and their associated signals are now listed within the events yaml and can be added to the list of matches to register for per event. Change-Id: I65f657038afe7c68a421adb4820ea09e275be06d Signed-off-by: Matthew Barth --- control/types.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'control/types.hpp') diff --git a/control/types.hpp b/control/types.hpp index a670810..f6b2b60 100644 --- a/control/types.hpp +++ b/control/types.hpp @@ -58,16 +58,16 @@ using Timer = std::tuple; constexpr auto signaturePos = 0; constexpr auto handlerObjPos = 1; -using PropertyChange = std::tuple; +using Signal = std::tuple; constexpr auto groupPos = 0; constexpr auto actionsPos = 1; constexpr auto timerPos = 2; -constexpr auto propChangeListPos = 3; +constexpr auto signalsPos = 3; using SetSpeedEvent = std::tuple, Timer, - std::vector>; + std::vector>; constexpr auto eventGroupPos = 0; constexpr auto eventHandlerPos = 1; -- cgit v1.2.1