QtDBus: Convert QDBusMetaTypeId into namespace
There are no member variables in this private struct, so it can as well be a namespace. Change-Id: I397b9680ee70e17d780db9de33ad44a00ac7792a Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
This commit is contained in:
parent
08a37f9cee
commit
1403b63a57
@ -28,18 +28,17 @@
|
|||||||
|
|
||||||
QT_BEGIN_NAMESPACE
|
QT_BEGIN_NAMESPACE
|
||||||
|
|
||||||
struct QDBusMetaTypeId
|
namespace QDBusMetaTypeId {
|
||||||
{
|
QMetaType message(); // QDBusMessage
|
||||||
static QMetaType message(); // QDBusMessage
|
QMetaType argument(); // QDBusArgument
|
||||||
static QMetaType argument(); // QDBusArgument
|
QMetaType variant(); // QDBusVariant
|
||||||
static QMetaType variant(); // QDBusVariant
|
QMetaType objectpath(); // QDBusObjectPath
|
||||||
static QMetaType objectpath(); // QDBusObjectPath
|
QMetaType signature(); // QDBusSignature
|
||||||
static QMetaType signature(); // QDBusSignature
|
QMetaType error(); // QDBusError
|
||||||
static QMetaType error(); // QDBusError
|
QMetaType unixfd(); // QDBusUnixFileDescriptor
|
||||||
static QMetaType unixfd(); // QDBusUnixFileDescriptor
|
|
||||||
|
|
||||||
static void init();
|
void init();
|
||||||
};
|
}; // namespace QDBusMetaTypeId
|
||||||
|
|
||||||
inline QMetaType QDBusMetaTypeId::message()
|
inline QMetaType QDBusMetaTypeId::message()
|
||||||
{ return QMetaType::fromType<QDBusMessage>(); }
|
{ return QMetaType::fromType<QDBusMessage>(); }
|
||||||
|
Loading…
Reference in New Issue
Block a user