summaryrefslogtreecommitdiff
path: root/TAO/tao/PortableServer/POA_Policy_Set.h
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
commit6b846cf03c0bcbd8c276cb0af61a181e5f98eaae (patch)
treeda50d054f9c761c3f6a5923f6979e93306c56d68 /TAO/tao/PortableServer/POA_Policy_Set.h
parent0e555b9150d38e3b3473ba325b56db2642e6352b (diff)
downloadATCD-6b846cf03c0bcbd8c276cb0af61a181e5f98eaae.tar.gz
Repo restructuring
Diffstat (limited to 'TAO/tao/PortableServer/POA_Policy_Set.h')
-rw-r--r--TAO/tao/PortableServer/POA_Policy_Set.h83
1 files changed, 0 insertions, 83 deletions
diff --git a/TAO/tao/PortableServer/POA_Policy_Set.h b/TAO/tao/PortableServer/POA_Policy_Set.h
deleted file mode 100644
index 182ad836a8f..00000000000
--- a/TAO/tao/PortableServer/POA_Policy_Set.h
+++ /dev/null
@@ -1,83 +0,0 @@
-// -*- C++ -*-
-
-//=============================================================================
-/**
- * @file POA_Policy_Set.h
- *
- * $Id$
- *
- * POA
- *
- * @author Irfan Pyarali
- */
-//=============================================================================
-
-#ifndef TAO_POA_POLICY_SET_H
-#define TAO_POA_POLICY_SET_H
-#include /**/ "ace/pre.h"
-
-#include "tao/PortableServer/portableserver_export.h"
-
-#if !defined (ACE_LACKS_PRAGMA_ONCE)
-# pragma once
-#endif /* ACE_LACKS_PRAGMA_ONCE */
-
-#include "tao/Policy_Set.h"
-
-TAO_BEGIN_VERSIONED_NAMESPACE_DECL
-
-class TAO_Policy_Validator;
-
-class TAO_PortableServer_Export TAO_POA_Policy_Set
-{
-public:
-
- TAO_POA_Policy_Set (void);
-
- TAO_POA_Policy_Set (const TAO_POA_Policy_Set &rhs);
-
- ~TAO_POA_Policy_Set (void);
-
- /// Returns the policy at the specified index.
- /// CORBA::Policy::_nil () is returned if the policy doesn't exist
- CORBA::Policy *get_policy_by_index (CORBA::ULong index);
-
- /// Get the number of policies
- CORBA::ULong num_policies (void) const;
-
- /// Obtain a single cached policy.
- CORBA::Policy_ptr get_cached_policy (TAO_Cached_Policy_Type type
- ACE_ENV_ARG_DECL);
-
- void merge_policies (const CORBA::PolicyList &policies
- ACE_ENV_ARG_DECL);
-
- void merge_policy (const CORBA::Policy_ptr policy
- ACE_ENV_ARG_DECL);
-
- void validate_policies (TAO_Policy_Validator &validator,
- TAO_ORB_Core &orb_core
- ACE_ENV_ARG_DECL);
-
- /// Add all of the client exposed policies to the specified list.
- void add_client_exposed_fixed_policies (CORBA::PolicyList *client_exposed_policies
- ACE_ENV_ARG_DECL);
-
- TAO_Policy_Set &policies (void);
-
- /// Obtain a single policy.
- CORBA::Policy_ptr get_policy (CORBA::PolicyType policy
- ACE_ENV_ARG_DECL);
-
-protected:
- TAO_Policy_Set impl_;
-};
-
-TAO_END_VERSIONED_NAMESPACE_DECL
-
-#if defined (__ACE_INLINE__)
-# include "tao/PortableServer/POA_Policy_Set.i"
-#endif /* __ACE_INLINE__ */
-
-#include /**/ "ace/post.h"
-#endif /* TAO_POA_POLICY_SET_H */