20 lines
460 B
C
20 lines
460 B
C
#ifndef DBUS_METATYPES_H
|
|
#define DBUS_METATYPES_H
|
|
|
|
#include <QMetaType>
|
|
#include <QList>
|
|
#include <QByteArray>
|
|
#include <QMap>
|
|
#include <QString>
|
|
#include <QDBusObjectPath>
|
|
|
|
Q_DECLARE_METATYPE(QList<QByteArray>)
|
|
|
|
typedef QMap<QString, QVariantMap> InterfacesAndProperties;
|
|
typedef QMap<QDBusObjectPath, InterfacesAndProperties> ManagedObjectList;
|
|
|
|
Q_DECLARE_METATYPE(InterfacesAndProperties)
|
|
Q_DECLARE_METATYPE(ManagedObjectList)
|
|
|
|
#endif // DBUS_METATYPES_H_
|