Discman
Loading...
Searching...
No Matches
freedesktop.h
Go to the documentation of this file.
1
6
7#ifndef FREEDESKTOP_H
8#define FREEDESKTOP_H
9
10#include <string>
11
13namespace Freedesktop {
14
17 public:
19 class Signals {
20 public:
22 inline static const std::string InterfacesAdded = "InterfacesAdded";
23
25 inline static const std::string InterfacesRemoved = "InterfacesRemoved";
26 };
27
29 class Methods {
30 public:
32 inline static const std::string GetManagedObjects = "GetManagedObjects";
33 };
34
36 inline static const std::string Interface = "org.freedesktop.DBus.ObjectManager";
37 };
38
39}
40
41#endif // FREEDESKTOP_H
Object manager method names.
Definition freedesktop.h:29
static const std::string GetManagedObjects
GetManagedObjects method name.
Definition freedesktop.h:32
Object manager signal names.
Definition freedesktop.h:19
static const std::string InterfacesRemoved
InterfacesRemoved signal name.
Definition freedesktop.h:25
static const std::string InterfacesAdded
InterfacesAdded signal name.
Definition freedesktop.h:22
The D-Bus object manager interface.
Definition freedesktop.h:16
static const std::string Interface
Object manager D-Bus interface name.
Definition freedesktop.h:36
Freedesktop D-Bus information.
Definition freedesktop.h:13