[dbus] add overload 'value' for custom dbus property types
[profile/ivi/automotive-message-broker.git] / plugins / dbus / automotivemanager.h
1 #ifndef AUTOMOTIVEMANGER_H_
2 #define AUTOMOTIVEMANAGER_H_
3
4 #include <gio/gio.h>
5 #include <map>
6 #include <list>
7
8 class AbstractDBusInterface;
9
10 class AutomotiveManager
11 {
12 public:
13
14         AutomotiveManager(GDBusConnection* connection);
15         ~AutomotiveManager();
16
17         std::map<AbstractDBusInterface*, std::list<std::string>> subscribedProcesses;
18
19 private:
20
21         GDBusConnection* mConnection;
22         guint regId;
23
24 };
25
26
27 #endif //AUTOMOTOVEMANAGER_H_