summaryrefslogtreecommitdiff
path: root/TAO/tao/Services.pidl
diff options
context:
space:
mode:
authorWilliam R. Otte <wotte@dre.vanderbilt.edu>2006-07-24 15:50:21 +0000
committerWilliam R. Otte <wotte@dre.vanderbilt.edu>2006-07-24 15:50:21 +0000
commit3aff90f4a822fcf5d902bbfbcc9fa931d6191a8c (patch)
tree197c810e5f5bce17b1233a7cb8d7b50c0bcd25e2 /TAO/tao/Services.pidl
parent6b846cf03c0bcbd8c276cb0af61a181e5f98eaae (diff)
downloadATCD-3aff90f4a822fcf5d902bbfbcc9fa931d6191a8c.tar.gz
Repo restructuring
Diffstat (limited to 'TAO/tao/Services.pidl')
-rw-r--r--TAO/tao/Services.pidl54
1 files changed, 54 insertions, 0 deletions
diff --git a/TAO/tao/Services.pidl b/TAO/tao/Services.pidl
new file mode 100644
index 00000000000..c855d525ca0
--- /dev/null
+++ b/TAO/tao/Services.pidl
@@ -0,0 +1,54 @@
+// -*- IDL -*-
+//
+// $Id$
+
+// ================================================================
+//
+// This file was used to generate the code in ServicesC.*
+// The command used to generate code is:
+//
+// tao_idl
+// -o orig -Ge 1 -GA -SS -Sci
+// -Wb,export_macro="tao/TAO_Export"
+// -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 "tao/OctetSeq.pidl"
+
+#pragma prefix "omg.org"
+
+module CORBA
+{
+ typedef unsigned short ServiceType;
+ typedef unsigned long ServiceOption;
+ typedef unsigned long ServiceDetailType;
+ typedef OctetSeq ServiceDetailData;
+ typedef sequence<ServiceOption> ServiceOptionSeq;
+
+ const ServiceType Security = 1;
+
+ struct ServiceDetail
+ {
+ ServiceDetailType service_detail_type;
+ ServiceDetailData service_detail;
+ };
+
+ typedef sequence<ServiceDetail> ServiceDetailSeq;
+
+ struct ServiceInformation
+ {
+ ServiceOptionSeq service_options;
+ ServiceDetailSeq service_details;
+ };
+};
+
+#endif /* TAO_CORBA_SERVICES_IDL */