summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/EC_Custom_Marshal/data.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/tests/EC_Custom_Marshal/data.idl')
-rw-r--r--TAO/orbsvcs/tests/EC_Custom_Marshal/data.idl21
1 files changed, 21 insertions, 0 deletions
diff --git a/TAO/orbsvcs/tests/EC_Custom_Marshal/data.idl b/TAO/orbsvcs/tests/EC_Custom_Marshal/data.idl
new file mode 100644
index 00000000000..871ff05f9df
--- /dev/null
+++ b/TAO/orbsvcs/tests/EC_Custom_Marshal/data.idl
@@ -0,0 +1,21 @@
+//
+// $Id$
+//
+
+module ECM_IDLData
+{
+ // Some simple data types to show how the Events can carry its
+ // payload in the octet sequence.
+
+ struct Point {
+ double x;
+ double y;
+ };
+ typedef sequence<Point> Vector;
+
+ struct Info {
+ string mobile_name;
+ double mobile_speed;
+ Vector trajectory;
+ };
+};