Go to the source code of this file.
◆ registerHelper()
template<typename T >
static void registerHelper |
( |
T * |
= 0 | ) |
|
|
inlinestatic |
Definition at line 90 of file qdbusmetatype.cpp.
92 void (*mf)(
QDBusArgument &,
const T *) = qDBusMarshallHelper<T>;
93 void (*df)(
const QDBusArgument &, T *) = qDBusDemarshallHelper<T>;
95 reinterpret_cast<QDBusMetaType::MarshallFunction>(mf),
96 reinterpret_cast<QDBusMetaType::DemarshallFunction>(df));
The QDBusArgument class is used to marshall and demarshall D-Bus arguments.