summaryrefslogtreecommitdiff
path: root/modules/CIAO/connectors/dds4ccm/examples/Shapes/Sender/Shapes_Sender.idl
diff options
context:
space:
mode:
Diffstat (limited to 'modules/CIAO/connectors/dds4ccm/examples/Shapes/Sender/Shapes_Sender.idl')
-rw-r--r--modules/CIAO/connectors/dds4ccm/examples/Shapes/Sender/Shapes_Sender.idl39
1 files changed, 39 insertions, 0 deletions
diff --git a/modules/CIAO/connectors/dds4ccm/examples/Shapes/Sender/Shapes_Sender.idl b/modules/CIAO/connectors/dds4ccm/examples/Shapes/Sender/Shapes_Sender.idl
new file mode 100644
index 00000000000..c60215714b1
--- /dev/null
+++ b/modules/CIAO/connectors/dds4ccm/examples/Shapes/Sender/Shapes_Sender.idl
@@ -0,0 +1,39 @@
+// $Id$
+
+/**
+ * @file
+ * @author Marcel Smit <msmit@remedy.nl>
+ *
+ * by-hand idl3 translation of sender components.
+ */
+
+#ifndef DDS_SENDER_IDL
+#define DDS_SENDER_IDL
+
+#include "Connector/Shapes_Connector.idl"
+#include "Connector/Shapes_ConnectorE.idl"
+
+module Shapes
+{
+ component Sender
+ {
+ port CCM_DDS::DDS_Update info_update;
+ attribute unsigned long rate;
+ attribute unsigned short max_x;
+ attribute unsigned short max_y;
+ attribute unsigned short max_size;
+ attribute boolean resize_shape;
+ };
+};
+
+/*
+For future use: IDL3 plus
+module Shapes
+{
+ component Sender
+ {
+ port CCM_DDS::DDS_Write <Shape_Info> info;
+ };
+};
+*/
+#endif