00001 // -*- C++ -*- 00002 00003 //============================================================================= 00004 /** 00005 * @file BiDir_Adapter.h 00006 * 00007 * $Id: BiDir_Adapter.h 78292 2007-05-09 19:20:32Z johnnyw $ 00008 * 00009 * @author Balachandran Natarajan <parsons@cs.wustl.edu> 00010 */ 00011 //============================================================================= 00012 #ifndef TAO_BIDIR_ADAPTER_H 00013 #define TAO_BIDIR_ADAPTER_H 00014 00015 #include /**/ "ace/pre.h" 00016 #include "ace/Service_Object.h" 00017 00018 #if !defined (ACE_LACKS_PRAGMA_ONCE) 00019 # pragma once 00020 #endif /* ACE_LACKS_PRAGMA_ONCE */ 00021 00022 #include "tao/TAO_Export.h" 00023 #include "tao/orbconf.h" 00024 00025 TAO_BEGIN_VERSIONED_NAMESPACE_DECL 00026 00027 class TAO_Policy_Validator; 00028 00029 /** 00030 * @class TAO_BiDir_Adapter 00031 * 00032 * @brief TAO_BiDir_Adapter. 00033 * 00034 * Class that offers an interface to the ORB to load and manipulate 00035 * BiDirGIOP library. 00036 */ 00037 class TAO_Export TAO_BiDir_Adapter : public ACE_Service_Object 00038 { 00039 public: 00040 00041 /// The virtual destructor 00042 virtual ~TAO_BiDir_Adapter (void); 00043 00044 virtual void load_policy_validators (TAO_Policy_Validator &validator) = 0; 00045 }; 00046 00047 TAO_END_VERSIONED_NAMESPACE_DECL 00048 00049 #include /**/ "ace/post.h" 00050 00051 #endif /* TAO_BIDIR_ADAPTER_H */