00001 // -*- C++ -*- 00002 00003 //============================================================================= 00004 /** 00005 * @file StrategyFactory.h 00006 * 00007 * $Id: StrategyFactory.h 69667 2005-11-27 12:04:11Z ossama $ 00008 * 00009 * @author Johnny Willemsen <jwillemsen@remedy.nl> 00010 */ 00011 //============================================================================= 00012 00013 #ifndef TAO_PORTABLESERVER_STRATEGYFACTORY_H 00014 #define TAO_PORTABLESERVER_STRATEGYFACTORY_H 00015 00016 #include /**/ "ace/pre.h" 00017 00018 #include "ace/Service_Object.h" 00019 00020 #if !defined (ACE_LACKS_PRAGMA_ONCE) 00021 # pragma once 00022 #endif /* ACE_LACKS_PRAGMA_ONCE */ 00023 00024 #include "tao/orbconf.h" 00025 00026 TAO_BEGIN_VERSIONED_NAMESPACE_DECL 00027 00028 namespace TAO 00029 { 00030 namespace Portable_Server 00031 { 00032 class StrategyFactory 00033 : public ACE_Service_Object 00034 { 00035 public: 00036 virtual ~StrategyFactory (void); 00037 }; 00038 } /* namespace Portable_Server */ 00039 } /* namespace TAO */ 00040 00041 TAO_END_VERSIONED_NAMESPACE_DECL 00042 00043 #include /**/ "ace/post.h" 00044 00045 #endif /* TAO_PORTABLESERVER_STRATEGYFACTORY_H */