From d3ccf97331935b181041394b80be20dca282ea71 Mon Sep 17 00:00:00 2001 From: christian mueller Date: Wed, 29 Feb 2012 13:27:27 +0100 Subject: * [ performance] for classes that do not need to be derived from, removed virtual desctructor * implemented confirmation of routing ready in RoutingReceiver * [Sockethandler] automatically set gDispatchDone to 0 when starting mainloop * fixed unit text to work with latest changes (expect Dbus command interface) * [GAM-4] added way to do synchronous calling on interfaces with the help of CAmSerializer.h * reworked AsyncRoutingPlugin to work with CAmSerializer.h * reworked AsyncRoutingPlugin to register elemtes in thread using CAmSerializer.h * reworked AsncPlugin Tests to work with remodelled Plugin --- PluginControlInterface/src/ControlSender.cpp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'PluginControlInterface') diff --git a/PluginControlInterface/src/ControlSender.cpp b/PluginControlInterface/src/ControlSender.cpp index 052d1ff..567f8c6 100644 --- a/PluginControlInterface/src/ControlSender.cpp +++ b/PluginControlInterface/src/ControlSender.cpp @@ -27,6 +27,7 @@ #include "control/ControlReceiveInterface.h" #include #include +#include "DLTWrapper.h" using namespace am; @@ -456,21 +457,21 @@ void ControlSenderPlugin::getInterfaceVersion(std::string & version) const void ControlSenderPlugin::confirmCommandReady() { - //todo:implement + logInfo("ControlSenderPlugin got Routing Ready confirmed"); } void ControlSenderPlugin::confirmRoutingReady() { - //todo:implement + logInfo("ControlSenderPlugin got Command Ready confirmed"); } void ControlSenderPlugin::confirmCommandRundown() { - //todo:implement + logInfo("ControlSenderPlugin got Routing Rundown confirmed"); } void ControlSenderPlugin::confirmRoutingRundown() { - //todo:implement + logInfo("ControlSenderPlugin got Command Rundown confirmed"); } -- cgit v1.2.1