summaryrefslogtreecommitdiff
path: root/CIAO/connectors/dds4ccm/tests/Derived/Derived_Connector.idl
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/connectors/dds4ccm/tests/Derived/Derived_Connector.idl')
-rw-r--r--CIAO/connectors/dds4ccm/tests/Derived/Derived_Connector.idl42
1 files changed, 0 insertions, 42 deletions
diff --git a/CIAO/connectors/dds4ccm/tests/Derived/Derived_Connector.idl b/CIAO/connectors/dds4ccm/tests/Derived/Derived_Connector.idl
deleted file mode 100644
index ed4059534f7..00000000000
--- a/CIAO/connectors/dds4ccm/tests/Derived/Derived_Connector.idl
+++ /dev/null
@@ -1,42 +0,0 @@
-#ifndef DERIVED_CONNECTOR_IDL
-#define DERIVED_CONNECTOR_IDL
-
-#include <Components.idl>
-#include <ccm_dds.idl>
-
-#include "Derived.idl"
-
-#pragma ciao lem "Derived_ConnectorE.idl"
-
-#pragma dds4ccm impl "DDS_Derived_Connector_T.h"
-
-#if (CIAO_DDS4CCM_OPENDDS==1)
-# include "DerivedTypeSupport.idl"
-#endif
-
-module ::CCM_DDS::Typed < ::DerivedType, ::DerivedTypeSeq> DerivedTypeConnector;
-
-interface fooA
-{
- void send (in long value);
-};
-
-interface fooB
-{
- void send (in long value);
-};
-
-// @todo, module here should go away again
-module DerivedTypeConnector {
- connector MyEvent : DerivedTypeConnector::DDS_Event
- {
- provides fooA my_foo;
- };
-
- connector MyState : DerivedTypeConnector::DDS_State
- {
- provides fooB my_foo;
- };
-};
-
-#endif