summaryrefslogtreecommitdiff
path: root/TAO/tao/CORBA.pidl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/CORBA.pidl')
-rw-r--r--TAO/tao/CORBA.pidl49
1 files changed, 0 insertions, 49 deletions
diff --git a/TAO/tao/CORBA.pidl b/TAO/tao/CORBA.pidl
deleted file mode 100644
index c9264902975..00000000000
--- a/TAO/tao/CORBA.pidl
+++ /dev/null
@@ -1,49 +0,0 @@
-// $Id$
-// This will have all nwe definitions that will go in to
-// CORBA from now onwards.
-
-
-#pragma prefix "omg.org"
-
-module CORBA
-{
- typedef string ORBid;
-
- interface NamedValue
- {
- readonly attribute Identifier name;
- readonly attribute any value;
- readonly attribute Flags flags;
- };
-
- enum exception_type
- {
- NO_EXCEPTION,
- USER_EXCEPTION,
- SYSTEM_EXCEPTION
- };
-
- typedef sequence<Request_ptr> RequestSeq;
-
- typedef string ObjectId;
- typedef sequence <ObjectId> ObjectIdList;
-
- typedef unsigned short ServiceType;
- typedef unsigned long ServiceOption;
- typedef unsigned long ServiceDetailType;
-
- struct ServiceDetail
- {
- ServiceDetailType service_detail_type;
- sequence <octet> service_detail;
- };
-
- struct ServiceInformation
- {
- sequence <ServiceOption> service_options;
- sequence <ServiceDetail> service_details;
- };
-
-};
-
-#pragma prefix ""