summaryrefslogtreecommitdiff
path: root/TAO/tao/client_factory.h
blob: 6f5c683ab479b33128fb5f4819cad931462a599a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// 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 */