HomeSort by relevance Sort by last modified time
    Searched defs:DBusType (Results 1 - 2 of 2) sorted by null

  /external/libbrillo/brillo/dbus/
data_serialization.h 45 // CustomType. As well as a template specialization of DBusType<> for the same
79 // Base class for DBusType<T> for T not supported by D-Bus. This used to
83 // Generic definition of DBusType<T> which will be specialized for particular
88 // See DBusType specialization for google::protobuf::MessageLite below for more
91 struct DBusType : public Unsupported {};
107 // For a single type T, check if DBusType<T> derives from Unsupported.
113 !std::is_base_of<Unsupported, DBusType<T>>::value> {};
143 return DBusType<T>::GetSignature();
183 // DBusType<T> for various C++ types that can be serialized over D-Bus.
192 struct DBusType<bool>
    [all...]
data_serialization_unittest.cc 687 // Specialize DBusType<T> for "Person" structure.
689 struct DBusType<Person> {

Completed in 116 milliseconds