summaryrefslogtreecommitdiff
path: root/TAO/tao/Default_Endpoint_Selector_Factory.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/Default_Endpoint_Selector_Factory.h
parent0e555b9150d38e3b3473ba325b56db2642e6352b (diff)
downloadATCD-6b846cf03c0bcbd8c276cb0af61a181e5f98eaae.tar.gz
Repo restructuring
Diffstat (limited to 'TAO/tao/Default_Endpoint_Selector_Factory.h')
-rw-r--r--TAO/tao/Default_Endpoint_Selector_Factory.h87
1 files changed, 0 insertions, 87 deletions
diff --git a/TAO/tao/Default_Endpoint_Selector_Factory.h b/TAO/tao/Default_Endpoint_Selector_Factory.h
deleted file mode 100644
index b521cab81dd..00000000000
--- a/TAO/tao/Default_Endpoint_Selector_Factory.h
+++ /dev/null
@@ -1,87 +0,0 @@
-// -*- C++ -*-
-
-//=============================================================================
-/**
- * @file Default_Endpoint_Selector_Factory.h
- *
- * $Id$
- *
- * Strategies for selecting profile/endpoint from an IOR for making an
- * invocation.
- *
- * @author Marina Spivak <marina@cs.wustl.edu>
- * @author Frank Hunleth <fhunleth@cs.wustl.edu>
- */
-//=============================================================================
-
-#ifndef TAO_DEFAULT_ENDPOINT_SELECTOR_FACTORY_H
-#define TAO_DEFAULT_ENDPOINT_SELECTOR_FACTORY_H
-
-#include /**/ "ace/pre.h"
-#include "ace/Service_Config.h"
-
-#if !defined (ACE_LACKS_PRAGMA_ONCE)
-# pragma once
-#endif /* ACE_LACKS_PRAGMA_ONCE */
-
-#include "tao/Endpoint_Selector_Factory.h"
-
-TAO_BEGIN_VERSIONED_NAMESPACE_DECL
-
-// Forward references
-class TAO_Default_Endpoint_Selector;
-
-// ****************************************************************
-
-/**
- * @class TAO_Default_Endpoint_Selector_Factory
- *
- * @brief Factory for initializing <Endpoint_Selection_State> and
- * obtaining appropriate <Invocation_Endpoint_Selector>.
- *
- * Used by Invocation classes to intialize its endpoint selection
- * strategy and state based on the effective policies.
- * Endpoint selection strategies are stateless objects - all the
- * state they need is contained by Invocation in
- * <Endpoint_Selection_State>. Thus, rather than allocating an
- * endpoint selection strategy object for each Invocation, the
- * factory simply returns the appropriate one from the
- * set preallocated in the ORB_Core. One endpoint selection
- * strategy object can be used by many invocations concurrently.
- */
-class TAO_Export TAO_Default_Endpoint_Selector_Factory
- : public TAO_Endpoint_Selector_Factory
-{
-public:
- /// Constructor.
- TAO_Default_Endpoint_Selector_Factory (void);
-
- /// Destructor.
- virtual ~TAO_Default_Endpoint_Selector_Factory (void);
-
- /// Get an Invocation's endpoint selection strategy and
- /// initialize the endpoint selection state instance.
- virtual TAO_Invocation_Endpoint_Selector *get_selector (
- ACE_ENV_SINGLE_ARG_DECL);
-
-private:
-
- // Prevent copying/assignment.
- TAO_Default_Endpoint_Selector_Factory (TAO_Default_Endpoint_Selector_Factory const &);
- void operator= (TAO_Default_Endpoint_Selector_Factory const &);
-
-protected:
-
- /// The possible endpoint selector strategies that can be
- /// returned by this factory
- TAO_Default_Endpoint_Selector * const default_endpoint_selector_;
-
-};
-
-TAO_END_VERSIONED_NAMESPACE_DECL
-
-ACE_STATIC_SVC_DECLARE_EXPORT (TAO, TAO_Default_Endpoint_Selector_Factory)
-ACE_FACTORY_DECLARE (TAO, TAO_Default_Endpoint_Selector_Factory)
-
-#include /**/ "ace/post.h"
-#endif /* TAO_DEFAULT_ENDPOINT_SELECTOR_FACTORY_H */