Go to the documentation of this file.
24 #ifndef DIGIKAM_DB_ENGINE_DBUS_UTILS_H
25 #define DIGIKAM_DB_ENGINE_DBUS_UTILS_H
29 #define DECLARE_METATYPE_FOR_DBUS(x) \
30 Q_DECLARE_METATYPE(x) \
32 inline QDBusArgument& operator<<(QDBusArgument& argument, const x& changeset) \
34 changeset >> argument; \
38 inline const QDBusArgument& operator>>(const QDBusArgument& argument, x& changeset) \
40 changeset << argument; \