summaryrefslogtreecommitdiff
path: root/AudioManagerDaemon/src/RoutingReceiver.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'AudioManagerDaemon/src/RoutingReceiver.cpp')
-rw-r--r--AudioManagerDaemon/src/RoutingReceiver.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/AudioManagerDaemon/src/RoutingReceiver.cpp b/AudioManagerDaemon/src/RoutingReceiver.cpp
index bbf4c78..b9dc3ac 100644
--- a/AudioManagerDaemon/src/RoutingReceiver.cpp
+++ b/AudioManagerDaemon/src/RoutingReceiver.cpp
@@ -24,8 +24,13 @@
*/
#include "RoutingReceiver.h"
+#include "RoutingSender.h"
+#include "DatabaseHandler.h"
+#include "ControlSender.h"
#include <assert.h>
+using namespace am;
+
RoutingReceiver::RoutingReceiver(DatabaseHandler *iDatabaseHandler, RoutingSender *iRoutingSender, ControlSender *iControlSender)
:mDatabaseHandler(iDatabaseHandler),
mRoutingSender(iRoutingSender),
@@ -316,15 +321,18 @@ am_Error_e RoutingReceiver::sendChangedData(const std::vector<am_EarlyData_s> &
am_Error_e RoutingReceiver::peekSinkClassID(const std::string & name, am_sourceClass_t & sourceClassID)
{
//todo: implement
+ return E_NOT_USED;
}
am_Error_e RoutingReceiver::peekSourceClassID(const std::string & name, am_sinkClass_t & sinkClassID)
{
//todo: implement
+ return E_NOT_USED;
}
am_Error_e RoutingReceiver::getDBusConnectionWrapper(DBusWrapper *dbusConnectionWrapper) const
{
//todo: return DbusWrapper
+ return E_NOT_USED;
}