summaryrefslogtreecommitdiff
path: root/TAO/tao/client_factory.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/client_factory.h')
-rw-r--r--TAO/tao/client_factory.h41
1 files changed, 0 insertions, 41 deletions
diff --git a/TAO/tao/client_factory.h b/TAO/tao/client_factory.h
deleted file mode 100644
index 6f5c683ab47..00000000000
--- a/TAO/tao/client_factory.h
+++ /dev/null
@@ -1,41 +0,0 @@
-// This may look like C, but it's really -*- C++ -*-
-
-// ============================================================================
-//
-// = LIBRARY
-// TAO
-//
-// = FILENAME
-// client_factory.h
-//
-// = AUTHOR
-// Chris Cleeland
-//
-// = VERSION
-// $Id$
-// ============================================================================
-
-#if !defined (TAO_CLIENT_FACTORY_H)
-# define TAO_CLIENT_FACTORY_H
-
-class 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
-
-#if 0
- // @@ Please remove me if possible.
- virtual TAO_CONNECTOR *connector (void);
- // Return a pointer to a connector using appropriate strategies.
-#endif /* 0 */
-};
-
-#endif /* TAO_CLIENT_FACTORY_H */