summaryrefslogtreecommitdiff
path: root/CIAO/tests/IDL3/ImpliedIDL/All/convert.idl
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/tests/IDL3/ImpliedIDL/All/convert.idl')
-rw-r--r--CIAO/tests/IDL3/ImpliedIDL/All/convert.idl53
1 files changed, 0 insertions, 53 deletions
diff --git a/CIAO/tests/IDL3/ImpliedIDL/All/convert.idl b/CIAO/tests/IDL3/ImpliedIDL/All/convert.idl
deleted file mode 100644
index 68600a619b3..00000000000
--- a/CIAO/tests/IDL3/ImpliedIDL/All/convert.idl
+++ /dev/null
@@ -1,53 +0,0 @@
-// $Id$
-/**
- * @file convert.idl
- * @author Jeff Parsons <j.parsons@vanderbilt.edu>
- *
- * Tests all conversions of IDL3 constructs to IDL2.
- */
-
-#include <Components.idl>
-
-eventtype eattype;
-interface sface {};
-interface pface {};
-interface uface {};
-interface umface {};
-
-valuetype pkey : Components::PrimaryKeyBase
-{
- public string info;
-};
-
-valuetype pubtype_base {};
-eventtype pubtype : pubtype_base {};
-eventtype emitype : pubtype {};
-eventtype eattype {};
-
-component CompBase supports sface
-{
-};
-
-component CompDerived : CompBase
-{
- provides pface pface_provider;
- uses uface uface_user;
- uses multiple umface umface_umuser;
- publishes pubtype pubtype_publisher;
- emits emitype emitype_emitter;
- consumes eattype eattype_consumer;
-};
-
-home CompBaseHome supports sface manages CompBase
-{
-};
-
-home CompDerivedHome : CompBaseHome manages CompDerived primarykey pkey
-{
- exception ch_except {};
- void ch_op () raises (ch_except);
- factory def_init ();
- finder kitchen_sink (in string uid, in pkey key, in boolean all)
- raises (ch_except);
-};
-