01b4fd9ef47a06f7eef1fdba6881e35efe5c3404
[profile/ivi/genivi/genivi-audio-manager.git] / PluginRoutingInterfaceDbus / src / RoutingSender.cpp
1 /*
2  * RoutingSender.cpp
3  *
4  *  Created on: Oct 25, 2011
5  *      Author: christian
6  */
7
8 #include "RoutingSender.h"
9
10
11 extern "C" RoutingSendInterface* PluginRoutingInterfaceDbusFactory() {
12     return (new DbusRoutingSender());
13 }
14
15 extern "C" void destroyRoutingPluginInterfaceDbus(RoutingSendInterface* routingSendInterface) {
16     delete routingSendInterface;
17 }
18
19 DbusRoutingSender::DbusRoutingSender()
20 {
21 }
22
23
24
25 DbusRoutingSender::~DbusRoutingSender()
26 {
27 }
28
29
30
31 void DbusRoutingSender::startupRoutingInterface(RoutingReceiveInterface *routingreceiveinterface)
32 {
33 }
34
35
36
37 void DbusRoutingSender::routingInterfacesReady()
38 {
39 }
40
41
42
43 void DbusRoutingSender::routingInterfacesRundown()
44 {
45 }
46
47
48
49 am_Error_e DbusRoutingSender::asyncAbort(const am_Handle_s handle)
50 {
51 }
52
53
54
55 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)
56 {
57 }
58
59
60
61 am_Error_e DbusRoutingSender::asyncDisconnect(const am_Handle_s handle, const am_connectionID_t connectionID)
62 {
63 }
64
65
66
67 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)
68 {
69 }
70
71
72
73 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)
74 {
75 }
76
77
78
79 am_Error_e DbusRoutingSender::asyncSetSourceState(const am_Handle_s handle, const am_sourceID_t sourceID, const am_SourceState_e state)
80 {
81 }
82
83
84
85 am_Error_e DbusRoutingSender::asyncSetSinkSoundProperty(const am_Handle_s handle, const am_SoundProperty_s& soundProperty, const am_sinkID_t sinkID)
86 {
87 }
88
89
90 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)
91 {
92 }
93
94
95
96 am_Error_e DbusRoutingSender::setDomainState(const am_domainID_t domainID, const am_DomainState_e domainState)
97 {
98 }
99
100
101
102 am_Error_e DbusRoutingSender::asyncSetSourceSoundProperty(const am_Handle_s handle, const am_SoundProperty_s & soundProperty, const am_sourceID_t sourceID)
103 {
104 }
105
106
107
108 am_Error_e DbusRoutingSender::returnBusName(std::string & BusName) const
109 {
110 }
111
112
113
114
115
116