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
|
||||
|
||||
struct QDBusMetaTypeId
|
||||
{
|
||||
static QMetaType message(); // QDBusMessage
|
||||
static QMetaType argument(); // QDBusArgument
|
||||
static QMetaType variant(); // QDBusVariant
|
||||
static QMetaType objectpath(); // QDBusObjectPath
|
||||
static QMetaType signature(); // QDBusSignature
|
||||
static QMetaType error(); // QDBusError
|
||||
static QMetaType unixfd(); // QDBusUnixFileDescriptor
|
||||
namespace QDBusMetaTypeId {
|
||||
QMetaType message(); // QDBusMessage
|
||||
QMetaType argument(); // QDBusArgument
|
||||
QMetaType variant(); // QDBusVariant
|
||||
QMetaType objectpath(); // QDBusObjectPath
|
||||
QMetaType signature(); // QDBusSignature
|
||||
QMetaType error(); // QDBusError
|
||||
QMetaType unixfd(); // QDBusUnixFileDescriptor
|
||||
|
||||
static void init();
|
||||
};
|
||||
void init();
|
||||
}; // namespace QDBusMetaTypeId
|
||||
|
||||
inline QMetaType QDBusMetaTypeId::message()
|
||||
{ return QMetaType::fromType<QDBusMessage>(); }
|
||||
|
Loading…
Reference in New Issue
Block a user