日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 >

qdbus 复杂类型

發(fā)布時間:2025/6/15 34 豆豆
生活随笔 收集整理的這篇文章主要介紹了 qdbus 复杂类型 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

2019獨角獸企業(yè)重金招聘Python工程師標(biāo)準(zhǔn)>>>

openSUSE imagewriter is a GPL licensed project which contains an example of how to do this. (Relevant files: udisks2_interface.*)

a{sv} is a dict of string:variant pairs. QVariantMap would fit this signature.

a{sa{sv}} is a dict of string:a{sv} pairs. QMap<QString, QVariantMap> would fit this signature.

a{oa{sa{sv}}} is a dict of objectpath:a{sa{sv}} pairs. QMap<QDBusObjectPath, QMap<QString, QVariantMap>> would fit this signature.

We should hide those angle-brackets behind some typedefs in a header file:

typedef QMap<QString, QVariantMap> InterfaceList; typedef QMap<QDBusObjectPath, InterfaceList> ManagedObjectList; Then declare their QMetaTypes in the same header file:

Q_DECLARE_METATYPE(InterfaceList) Q_DECLARE_METATYPE(ManagedObjectList) Then register them with the Qt metatype system at runtime:

qDBusRegisterMetaType<InterfaceList>(); qDBusRegisterMetaType<ManagedObjectList>(); Then we can annotate the XML:

<method name="GetManagedObjects"> <arg type="a{oa{sa{sv}}}" name="objects" direction="out"> <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" value="ManagedObjectList"/> </arg> </method> <signal name="InterfacesAdded"> <arg type="o" name="object"/> <arg type="a{sa{sv}}" name="interfaces"> <annotation name="org.qtproject.QtDBus.QtTypeName.In1" value="InterfaceList"/> </arg> </signal>

轉(zhuǎn)載于:https://my.oschina.net/u/1176559/blog/1922178

總結(jié)

以上是生活随笔為你收集整理的qdbus 复杂类型的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。