summaryrefslogtreecommitdiff
path: root/TAO/tests/Quoter/Factory_Finder_Impl.h
blob: 4f8561ee8efdd91d2d21e1938aa420ee6d43a15f (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
// $Id$

// ============================================================================
//
// = FILENAME
//    FactoryFinder_Impl.h
//
// = DESCRIPTION
//    Factory Finder Implementation for the Quoter example
//
// = AUTHOR
//    Michael Kircher (mk1@cs.wustl.edu)
//
// ============================================================================

#include "QuoterS.h"

#if !defined (QUOTER_FACTORY_FINDER_IMPL_H)
#define QUOTER_FACTORY_FINDER_IMPL_H

class Quoter_Factory_Finder_Impl : public POA_Stock::Quoter_Factory_Finder 
{
  // = TILE
  //   A CosLifeCycle conforming Factory Finder for the Quoter
  //   example. It uses the Naming Service to find a fitting factory.

public:
  Quoter_Factory_Finder_Impl (void);
  ~Quoter_Factory_Finder_Impl (void);

  virtual CosLifeCycle::Factories * find_factories (const CosLifeCycle::Key &factory_key,
                                                    CORBA::Environment &_tao_environment);
  // Returns a squence of Factories if factories matching the
  // factory_key were found. If no factory was found, then the
  // NoFactory exception, defined in CosLifeCycle, is raised.
};

#endif /* QUOTER_FACTORY_FINDER_IMPL_H */