summaryrefslogtreecommitdiff
path: root/AudioManagerDaemon/dbusRoothandler.h
diff options
context:
space:
mode:
Diffstat (limited to 'AudioManagerDaemon/dbusRoothandler.h')
-rw-r--r--AudioManagerDaemon/dbusRoothandler.h36
1 files changed, 0 insertions, 36 deletions
diff --git a/AudioManagerDaemon/dbusRoothandler.h b/AudioManagerDaemon/dbusRoothandler.h
deleted file mode 100644
index b673913..0000000
--- a/AudioManagerDaemon/dbusRoothandler.h
+++ /dev/null
@@ -1,36 +0,0 @@
-/*
- * dbusRoothandler.h
- *
- * Created on: Aug 1, 2011
- * Author: christian
- */
-
-#ifndef DBUSROOTHANDLER_H_
-#define DBUSROOTHANDLER_H_
-
-#include "audioManagerIncludes.h"
-#ifdef WITH_DBUS
-#include <dbus/dbus.h>
-#include <string.h>
-#include <list>
-#include <sstream>
-
-const char DBUS_SERVICE_SERVICE[]="org.genivi.audiomanager\0";
-const char DBUS_SERVICE_ROOT[]="/org/genivi/audiomanager\0";
-
-class dbusRoothandler {
-public:
- dbusRoothandler();
- virtual ~dbusRoothandler();
- DBusConnection* returnConnection();
- static DBusHandlerResult cbRootIntrospection(DBusConnection *conn, DBusMessage *msg, void *reference);
- void registerNode(std::string node);
-private:
- static dbusRoothandler* m_reference;
- DBusConnection* m_pConnection;
- DBusError m_err;
- std::list<std::string> m_nodesList;
-};
-
-#endif
-#endif /* DBUSROOTHANDLER_H_ */