summaryrefslogtreecommitdiff
path: root/TAO/tao/Domain.pidl
diff options
context:
space:
mode:
authorWilliam R. Otte <wotte@dre.vanderbilt.edu>2006-07-24 15:50:11 +0000
committerWilliam R. Otte <wotte@dre.vanderbilt.edu>2006-07-24 15:50:11 +0000
commit8008dd09ccf88d4edef237a184a698cac42f2952 (patch)
treeda50d054f9c761c3f6a5923f6979e93306c56d68 /TAO/tao/Domain.pidl
parent13d6e89af439164c0ade48e6f5c3e9b3f971e8c9 (diff)
downloadATCD-8008dd09ccf88d4edef237a184a698cac42f2952.tar.gz
Repo restructuring
Diffstat (limited to 'TAO/tao/Domain.pidl')
-rw-r--r--TAO/tao/Domain.pidl77
1 files changed, 0 insertions, 77 deletions
diff --git a/TAO/tao/Domain.pidl b/TAO/tao/Domain.pidl
deleted file mode 100644
index b221159edee..00000000000
--- a/TAO/tao/Domain.pidl
+++ /dev/null
@@ -1,77 +0,0 @@
-// -*- IDL -*-
-
-/**
- * @file Domain.pidl
- *
- * $Id$
- *
- * @brief Pre-compiled IDL source for the CORBA::Domain related
- * classes.
- *
- * This file was used to generate the code in DomainC.{h,inl,cpp}.
- *
- * The steps to regenerate the code are as follows:
- *
- * 1. Run the tao_idl compiler on the patched pidl file. The
- * command used for this is:
- *
- * tao_idl
- * -o orig -Gp -Gd -Ge 1 -GA
- * -Wb,export_macro=TAO_Export
- * -Wb,export_include=TAO_Export.h
- * -Wb,pre_include="ace/pre.h"
- * -Wb,post_include="ace/post.h"
- * -Wb,versioning_begin=TAO_BEGIN_VERSIONED_NAMESPACE_DECL
- * -Wb,versioning_end=TAO_END_VERSIONED_NAMESPACE_DECL
- * Domain.pidl
- *
- * 2. Then patch the generated code. This patch (a) eliminates
- * cycles in the include dependencies.
- *
- * Apply patches using the following commands:
- *
- * cp orig/DomainC.{h,i,cpp} .
- * cp orig/Domain{S,S_T}.{h,i,cpp} Domain
- * patch < diffs/Domain.diff
- *
- * 3. You'll have to move the Domain skeleton files from TAO/tao
- * to the TAO_Domain library by hand.
- *
- * Note: The diffs were generated with these commands:
- *
- * for i in DomainC.{h,cpp}; do
- * diff -wBbu orig/$i $i;
- * done > diffs/Domain.diff
- */
-
-#ifndef TAO_CORBA_DOMAIN_PIDL
-#define TAO_CORBA_DOMAIN_PIDL
-
-#include "tao/Policy.pidl"
-#include "tao/InterfaceDef.pidl"
-
-#pragma prefix "omg.org"
-
-module CORBA
-{
- interface DomainManager
- {
- Policy get_domain_policy (
- in PolicyType policy_type
- );
- };
-
- const PolicyType SecConstruction = 11;
-
- interface ConstructionPolicy : Policy
- {
- void make_domain_manager (
- in InterfaceDef object_type,
- in boolean constr_policy
- );
- };
-
- typedef sequence <DomainManager> DomainManagerList;
-};
-
-#endif /* TAO_CORBA_DOMAIN_IDL */