How to get description of service's event & action?
Hi All,
Based on this article, I can get the list of event & action from ACServerSample. https://ask.allseenalliance.org/quest...
It looks like this.
/MyDeviceEventsAndActions
org.alljoyn.ACServerSample.Actions
<interface name="org.alljoyn.ACServerSample.Actions">
<method name="SetModeToAuto">
</method>
<method name="SetModeToCool">
</method>
<method name="SetModeToFan">
</method>
<method name="SetModeToHeat">
</method>
<method name="SetModeToOff">
</method>
<property name="Version" type="q" access="read"/>
</interface>
org.alljoyn.ACServerSample.Events
<interface name="org.alljoyn.ACServerSample.Events">
<signal name="ModeSetToOff">
</signal>
<signal name="ModeSetToOn">
</signal>
<signal name="Temperature60FReached">
</signal>
<signal name="Temperature80FReached">
</signal>
<property name="Version" type="q" access="read"/>
</interface>
org.allseen.Introspectable
However, I also want to get the readable description. How could I do this in C++?
For example, for <method name="SetModeToOff">
, I should get <description>Set AC mode to Off</description>
.
Thanks, Daniel
you might ask on the core mailing list. https://lists.allseenalliance.org/mailman/listinfo/allseen-core
ry.jones ( 2015-09-16 21:53:11 -0800 )edit