summaryrefslogtreecommitdiff
path: root/PluginControlInterface/include
diff options
context:
space:
mode:
Diffstat (limited to 'PluginControlInterface/include')
-rw-r--r--PluginControlInterface/include/CAmControlSenderBase.h (renamed from PluginControlInterface/include/ControlSender.h)14
1 files changed, 7 insertions, 7 deletions
diff --git a/PluginControlInterface/include/ControlSender.h b/PluginControlInterface/include/CAmControlSenderBase.h
index e96f445..3d06356 100644
--- a/PluginControlInterface/include/ControlSender.h
+++ b/PluginControlInterface/include/CAmControlSenderBase.h
@@ -3,7 +3,7 @@
*
* GeniviAudioMananger DbusPlugin
*
- * \file ControlSender.h
+ * \file CAmControlSender.h
*
* \date 20-Oct-2011 3:42:04 PM
* \author Christian Mueller (christian.ei.mueller@bmw.de)
@@ -26,17 +26,17 @@
#ifndef CONTROLSENDER_H_
#define CONTROLSENDER_H_
-#include <control/ControlSendInterface.h>
+#include "control/IAmControlSend.h"
#include <list>
using namespace am;
-class ControlSenderPlugin: public ControlSendInterface
+class CAmControlSenderBase: public IAmControlSend
{
public:
- ControlSenderPlugin();
- virtual ~ControlSenderPlugin();
- am_Error_e startupController(ControlReceiveInterface* controlreceiveinterface);
+ CAmControlSenderBase();
+ virtual ~CAmControlSenderBase();
+ am_Error_e startupController(IAmControlReceive* controlreceiveinterface);
void setControllerReady();
void setControllerRundown();
am_Error_e hookUserConnectionRequest(const am_sourceID_t sourceID, const am_sinkID_t sinkID, am_mainConnectionID_t& mainConnectionID);
@@ -85,7 +85,7 @@ public:
void confirmRoutingRundown();
private:
- ControlReceiveInterface * mControlReceiveInterface;
+ IAmControlReceive * mControlReceiveInterface;
struct handleStatus
{
bool status;