fixed SF bug:

ID: 2991229
Summary: nested type wrong generation
This commit is contained in:
Andreas Volz 2011-02-14 23:27:32 +01:00
parent 9e25833870
commit 796c96d34e
4 changed files with 113 additions and 10 deletions

View file

@ -26,5 +26,10 @@
<method name="Info">
<arg type="a{ss}" name="info" direction="out"/>
</method>
<method name="Foo">
<arg type="a(a(uu)s)" name="array" direction="out" />
</method>
</interface>
</node>

View file

@ -24,6 +24,8 @@ public:
int32_t Sum(const std::vector<int32_t> & ints);
std::map< std::string, std::string > Info();
std::vector< ::DBus::Struct< std::vector< ::DBus::Struct< uint32_t, uint32_t > >, std::string > > Foo() {};
};
#endif//__DEMO_ECHO_SERVER_H