summaryrefslogtreecommitdiff
path: root/TAO/tao/Services.pidl
diff options
context:
space:
mode:
authorparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-03-12 16:18:58 +0000
committerparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-03-12 16:18:58 +0000
commit414715263a41b8525f0371e9851cfc470171b0d5 (patch)
treebf1c5cdcd20e3d61ed9d590adfaef8b5fce061df /TAO/tao/Services.pidl
parentd918dcf7a60a0a69c33de11f3b8259b2065d2e38 (diff)
downloadATCD-414715263a41b8525f0371e9851cfc470171b0d5.tar.gz
ChangeLogTag: Wed Mar 12 09:49:00 2003 Jeff Parsons <j.parsons@vanderbilt.edu>
Diffstat (limited to 'TAO/tao/Services.pidl')
-rw-r--r--TAO/tao/Services.pidl51
1 files changed, 51 insertions, 0 deletions
diff --git a/TAO/tao/Services.pidl b/TAO/tao/Services.pidl
new file mode 100644
index 00000000000..27a09a565b4
--- /dev/null
+++ b/TAO/tao/Services.pidl
@@ -0,0 +1,51 @@
+// -*- IDL -*-
+//
+// $Id$
+
+// ================================================================
+//
+// This file was used to generate the code in ServicesC.*
+// The command used to generate code is:
+//
+// tao_idl
+// -o orig -Gp -Gd -Ge 1
+// -Wb,export_macro=TAO_Export
+// -Wb,export_include="tao/corbafwd.h"
+// -Wb,pre_include="ace/pre.h"
+// -Wb,post_include="ace/post.h"
+// Services.pidl
+//
+// Patches for changes to the generated code are available in the
+// `diffs' directory.
+// ================================================================
+
+
+#ifndef TAO_CORBA_SERVICES_IDL
+#define TAO_CORBA_SERVICES_IDL
+
+#include "OctetSeq.pidl"
+
+#pragma prefix "omg.org"
+
+module CORBA
+{
+ typedef unsigned short ServiceType;
+ typedef unsigned long ServiceOption;
+ typedef unsigned long ServiceDetailType;
+
+ const ServiceType Security = 1;
+
+ struct ServiceDetail
+ {
+ ServiceDetailType service_detail_type;
+ OctetSeq service_detail;
+ };
+
+ struct ServiceInformation
+ {
+ sequence<ServiceOption> service_options;
+ sequence<ServiceDetail> service_details;
+ };
+};
+
+#endif /* TAO_CORBA_SERVICES_IDL */