summaryrefslogtreecommitdiff
path: root/TAO/tao/Client_Strategy_Factory.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Client_Strategy_Factory.h')
-rw-r--r--TAO/tao/Client_Strategy_Factory.h62
1 files changed, 0 insertions, 62 deletions
diff --git a/TAO/tao/Client_Strategy_Factory.h b/TAO/tao/Client_Strategy_Factory.h
deleted file mode 100644
index d4b0cbfdda5..00000000000
--- a/TAO/tao/Client_Strategy_Factory.h
+++ /dev/null
@@ -1,62 +0,0 @@
-// This may look like C, but it's really -*- C++ -*-
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// TAO
-//
-// = FILENAME
-// Client_Strategy_Factory.h
-//
-// = AUTHOR
-// Chris Cleeland <cleeland@cs.wustl.edu>
-//
-// ============================================================================
-
-#ifndef TAO_CLIENT_STRATEGY_FACTORY_H
-#define TAO_CLIENT_STRATEGY_FACTORY_H
-
-#include "ace/Service_Object.h"
-
-#if !defined (ACE_LACKS_PRAGMA_ONCE)
-# pragma once
-#endif /* ACE_LACKS_PRAGMA_ONCE */
-
-#include "tao/corbafwd.h"
-
-class ACE_Lock;
-class TAO_Transport_Mux_Strategy;
-class TAO_Wait_Strategy;
-class TAO_Transport;
-class TAO_ORB_Core;
-
-class TAO_Export TAO_Client_Strategy_Factory : public ACE_Service_Object
-{
- // = TITLE
- // Abstract factory used by the client to manufacture various
- // strategies used on the client-side.
-public:
- // = Intialization and termination methods.
- TAO_Client_Strategy_Factory (void);
- // Constructor.
-
- virtual ~TAO_Client_Strategy_Factory (void);
- // Destructor
-
- virtual ACE_Lock* create_profile_lock (void);
- // Create the lock for the forwarding Profile used by the
- // <TAO_GIOP_Invocation::location_forward> and the
- // <TAO_GIOP_Invocation::start>.
-
- virtual TAO_Transport_Mux_Strategy *create_transport_mux_strategy (TAO_ORB_Core *orb_core);
- // Create the correct client request muxing strategy.
-
- virtual TAO_Wait_Strategy *create_wait_strategy (TAO_Transport *transport);
- // Create the correct client <wait_for_reply> strategy.
-
- virtual ACE_Lock *create_cached_connector_lock (void);
- // Create the lock to be used by the cached connector.
-};
-
-#endif /* TAO_CLIENT_STRATEGY_FACTORY_H */