summaryrefslogtreecommitdiff
path: root/PluginControlInterface/include
diff options
context:
space:
mode:
authorchristian mueller <christian.ei.mueller@bmw.de>2012-03-01 19:12:55 +0100
committerchristian mueller <christian.ei.mueller@bmw.de>2012-03-01 19:12:55 +0100
commitdfcafbec34e0e454d9995551998af5d40a27c7ad (patch)
treed93d70fea7feb7004f6a2ce9bfce9b83d3469e42 /PluginControlInterface/include
parentffccf1e2003cea4230413ccfdfd4cd6515484e4f (diff)
downloadaudiomanager-dfcafbec34e0e454d9995551998af5d40a27c7ad.tar.gz
* fix [GAM-28] problems in routingsender.cpp
* [GAM-27] major refactoring: bringing everything to standardized names * Enhancement of CAmSerializer.h * improvement of documentation * adoption & regeneration of inerfaces
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;