summaryrefslogtreecommitdiff
path: root/CIAO/tests/IDL_Test/NonTopic_Connector/nontopic_test.idl
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/tests/IDL_Test/NonTopic_Connector/nontopic_test.idl')
-rw-r--r--CIAO/tests/IDL_Test/NonTopic_Connector/nontopic_test.idl39
1 files changed, 0 insertions, 39 deletions
diff --git a/CIAO/tests/IDL_Test/NonTopic_Connector/nontopic_test.idl b/CIAO/tests/IDL_Test/NonTopic_Connector/nontopic_test.idl
deleted file mode 100644
index 04b87042e1f..00000000000
--- a/CIAO/tests/IDL_Test/NonTopic_Connector/nontopic_test.idl
+++ /dev/null
@@ -1,39 +0,0 @@
-/**
- * @file
- * @author
- */
-
-#ifndef NONTOPIC_TEST_IDL
-#define NONTOPIC_TEST_IDL
-
-#include <Components.idl>
-
-#pragma dds4ccm impl "NonTopic_Connector_T.h"
-
-module Typed_NonTopic_Test_1<typename T,typename U,typename V,
- sequence<T> TSeq, sequence<U> USeq, sequence<V> VSeq>
- {
- local interface TestControl
- {
- void create(out T dat_T, out U dat_u, out V dat_v);
- };
- connector NT
- {
- uses TestControl foo;
- };
- };
-
-module Typed_NonTopic_Test_2<typename T,typename U,
- sequence<T> TSeq, sequence<U> USeq>
- {
- local interface TestControl
- {
- void create(out T dat_T, out U dat_u);
- };
- connector NT_2
- {
- uses TestControl bar;
- };
- };
-
-#endif