lib/dbus/Types: add ObjectPathTypeTraits

This commit is contained in:
Max Kellermann 2018-06-03 20:30:02 +02:00
parent 234f8d287a
commit d3793dfe5b
1 changed files with 3 additions and 0 deletions

View File

@ -55,6 +55,9 @@ struct TypeTraits<const char *> : BasicTypeTraits<DBUS_TYPE_STRING> {
using StringTypeTraits = TypeTraits<const char *>;
struct ObjectPathTypeTraits : BasicTypeTraits<DBUS_TYPE_OBJECT_PATH> {
};
template<>
struct TypeTraits<dbus_uint32_t> : BasicTypeTraits<DBUS_TYPE_UINT32> {
};