summaryrefslogtreecommitdiff
path: root/PluginRoutingInterfaceDbus/src
diff options
context:
space:
mode:
authorChristian Mueller <christian@lmuc329619u.(none)>2011-12-12 21:43:47 +0100
committerChristian Mueller <christian@lmuc329619u.(none)>2011-12-12 21:43:47 +0100
commit205595e3d3e6a1d55be3c462ef02c9f828a77feb (patch)
tree9c1202619c7b9a66ed874ca1a0c81530ae06e426 /PluginRoutingInterfaceDbus/src
parentd85e69bbf6d8ec6e087c7af579686923c76079cd (diff)
downloadaudiomanager-205595e3d3e6a1d55be3c462ef02c9f828a77feb.tar.gz
some updates, new tests
Diffstat (limited to 'PluginRoutingInterfaceDbus/src')
-rw-r--r--PluginRoutingInterfaceDbus/src/RoutingSender.cpp116
1 files changed, 116 insertions, 0 deletions
diff --git a/PluginRoutingInterfaceDbus/src/RoutingSender.cpp b/PluginRoutingInterfaceDbus/src/RoutingSender.cpp
new file mode 100644
index 0000000..01b4fd9
--- /dev/null
+++ b/PluginRoutingInterfaceDbus/src/RoutingSender.cpp
@@ -0,0 +1,116 @@
+/*
+ * RoutingSender.cpp
+ *
+ * Created on: Oct 25, 2011
+ * Author: christian
+ */
+
+#include "RoutingSender.h"
+
+
+extern "C" RoutingSendInterface* PluginRoutingInterfaceDbusFactory() {
+ return (new DbusRoutingSender());
+}
+
+extern "C" void destroyRoutingPluginInterfaceDbus(RoutingSendInterface* routingSendInterface) {
+ delete routingSendInterface;
+}
+
+DbusRoutingSender::DbusRoutingSender()
+{
+}
+
+
+
+DbusRoutingSender::~DbusRoutingSender()
+{
+}
+
+
+
+void DbusRoutingSender::startupRoutingInterface(RoutingReceiveInterface *routingreceiveinterface)
+{
+}
+
+
+
+void DbusRoutingSender::routingInterfacesReady()
+{
+}
+
+
+
+void DbusRoutingSender::routingInterfacesRundown()
+{
+}
+
+
+
+am_Error_e DbusRoutingSender::asyncAbort(const am_Handle_s handle)
+{
+}
+
+
+
+am_Error_e DbusRoutingSender::asyncConnect(const am_Handle_s handle, const am_connectionID_t connectionID, const am_sourceID_t sourceID, const am_sinkID_t sinkID, const am_ConnectionFormat_e connectionFormat)
+{
+}
+
+
+
+am_Error_e DbusRoutingSender::asyncDisconnect(const am_Handle_s handle, const am_connectionID_t connectionID)
+{
+}
+
+
+
+am_Error_e DbusRoutingSender::asyncSetSinkVolume(const am_Handle_s handle, const am_sinkID_t sinkID, const am_volume_t volume, const am_RampType_e ramp, const am_time_t time)
+{
+}
+
+
+
+am_Error_e DbusRoutingSender::asyncSetSourceVolume(const am_Handle_s handle, const am_sourceID_t sourceID, const am_volume_t volume, const am_RampType_e ramp, const am_time_t time)
+{
+}
+
+
+
+am_Error_e DbusRoutingSender::asyncSetSourceState(const am_Handle_s handle, const am_sourceID_t sourceID, const am_SourceState_e state)
+{
+}
+
+
+
+am_Error_e DbusRoutingSender::asyncSetSinkSoundProperty(const am_Handle_s handle, const am_SoundProperty_s& soundProperty, const am_sinkID_t sinkID)
+{
+}
+
+
+am_Error_e DbusRoutingSender::asyncCrossFade(const am_Handle_s handle, const am_crossfaderID_t crossfaderID, const am_HotSink_e hotSink, const am_RampType_e rampType, const am_time_t time)
+{
+}
+
+
+
+am_Error_e DbusRoutingSender::setDomainState(const am_domainID_t domainID, const am_DomainState_e domainState)
+{
+}
+
+
+
+am_Error_e DbusRoutingSender::asyncSetSourceSoundProperty(const am_Handle_s handle, const am_SoundProperty_s & soundProperty, const am_sourceID_t sourceID)
+{
+}
+
+
+
+am_Error_e DbusRoutingSender::returnBusName(std::string & BusName) const
+{
+}
+
+
+
+
+
+