summaryrefslogtreecommitdiff
path: root/CIAO/connectors/dds4ccm/tests/IDL_Test/Base/IDL_Test_Interfaces.idl
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/connectors/dds4ccm/tests/IDL_Test/Base/IDL_Test_Interfaces.idl')
-rw-r--r--CIAO/connectors/dds4ccm/tests/IDL_Test/Base/IDL_Test_Interfaces.idl18
1 files changed, 18 insertions, 0 deletions
diff --git a/CIAO/connectors/dds4ccm/tests/IDL_Test/Base/IDL_Test_Interfaces.idl b/CIAO/connectors/dds4ccm/tests/IDL_Test/Base/IDL_Test_Interfaces.idl
new file mode 100644
index 00000000000..516f88a3fce
--- /dev/null
+++ b/CIAO/connectors/dds4ccm/tests/IDL_Test/Base/IDL_Test_Interfaces.idl
@@ -0,0 +1,18 @@
+// $Id$
+
+#ifndef IDL_TEST_INTERFACES_IDL
+#define IDL_TEST_INTERFACES_IDL
+
+#pragma ciao lem "Base/IDL_Test_InterfacesE.idl"
+
+interface idl_test_base_interface {
+ void do_something_base ();
+ readonly attribute string base_string_attr;
+};
+
+interface idl_test_derived_interface : idl_test_base_interface {
+ void do_something_derived ();
+ attribute string derived_string_attr;
+};
+
+#endif