summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorAndreas Volz <andreas@er00923n.(none)>2011-02-15 23:58:42 +0100
committerAndreas Volz <andreas@er00923n.(none)>2011-02-15 23:58:42 +0100
commitcdedb019b026eb7bc1b909fd73d12e9c78b32a88 (patch)
treec1666dc1f63b6f41a62818226e177ad07ed3cd5d /examples
parent466931e52791521eb648ae21c614105e913270d4 (diff)
downloaddbus-c++-cdedb019b026eb7bc1b909fd73d12e9c78b32a88.tar.gz
- fixed Strcut generation in generator tool
- added some test cases
Diffstat (limited to 'examples')
-rw-r--r--examples/echo/echo-introspect.xml10
-rw-r--r--examples/echo/echo-server.h4
2 files changed, 0 insertions, 14 deletions
diff --git a/examples/echo/echo-introspect.xml b/examples/echo/echo-introspect.xml
index c276eb9..899612a 100644
--- a/examples/echo/echo-introspect.xml
+++ b/examples/echo/echo-introspect.xml
@@ -27,15 +27,5 @@
<arg type="a{ss}" name="info" direction="out"/>
</method>
- <method name="Foo">
- <arg type="a(a(uu)s)" name="array" direction="out" />
- </method>
-
- <method name="Foo2">
- <arg type="i" name="result" direction="out" />
- <arg type="i" name="direction" direction="in" />
- <arg type="a(a(uu)s)" name="array" direction="out" />
- </method>
-
</interface>
</node>
diff --git a/examples/echo/echo-server.h b/examples/echo/echo-server.h
index 491a7d8..3f0be58 100644
--- a/examples/echo/echo-server.h
+++ b/examples/echo/echo-server.h
@@ -24,10 +24,6 @@ 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() {};
-
- void Foo2(const int32_t& direction, int32_t& result, std::vector< ::DBus::Struct< std::vector< ::DBus::Struct< uint32_t, uint32_t > >, std::string > >& array) {};
};
#endif//__DEMO_ECHO_SERVER_H