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.pidl56
1 files changed, 0 insertions, 56 deletions
diff --git a/TAO/tao/CORBA.pidl b/TAO/tao/CORBA.pidl
deleted file mode 100644
index 642ba418552..00000000000
--- a/TAO/tao/CORBA.pidl
+++ /dev/null
@@ -1,56 +0,0 @@
-// $Id$
-
-// This will have all new definitions that will go in to CORBA from
-// now on.
-
-#pragma prefix "omg.org"
-
-module CORBA
-{
- typedef string ORBid;
- typedef string Identifier;
- typedef unsigned long Flags;
-
- struct NamedValue
- {
- Identifier name;
- any value;
- Flags flags;
- };
-
- enum exception_type
- {
- NO_EXCEPTION,
- USER_EXCEPTION,
- SYSTEM_EXCEPTION
- };
-
- interface Object;
- interface Request;
- interface NVList;
- interface Exception;
-
- typedef sequence<Request> 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 ""