iorinterceptor_adapter_impl.h
来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· C头文件 代码 · 共 65 行
H
65 行
// -*- C++ -*-
//=============================================================================
/**
* @file IORInterceptor_Adapter_Impl.h
*
* IORInterceptor_Adapter_Impl.h,v 1.6 2003/07/21 23:51:37 dhinton Exp
*
* @author Jeff Parsons <parsons@cs.wustl.edu>
*/
//=============================================================================
#ifndef TAO_IORINTERCEPTOR_ADAPTER_IMPL_H
#define TAO_IORINTERCEPTOR_ADAPTER_IMPL_H
#include /**/ "ace/pre.h"
#include "IORInterceptorC.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "iorinterceptor_export.h"
#include "tao/IORInterceptor_Adapter.h"
#include "ace/Service_Config.h"
#include "IORInterceptor_List.h"
/**
* @class TAO_IORInterceptor_Adapter_Impl
*
* @brief TAO_IORInterceptor_Adapter_Impl.
*
* Class that adapts various functions involving the PortableInterceptor
* interfaces IORInfo and IORInterceptor. This is the derived class
* that contains the actual implementations.
*/
class TAO_IORInterceptor_Export TAO_IORInterceptor_Adapter_Impl
: public TAO_IORInterceptor_Adapter
{
public:
virtual ~TAO_IORInterceptor_Adapter_Impl (void);
virtual void add_interceptor (PortableInterceptor::IORInterceptor_ptr interceptor
ACE_ENV_ARG_DECL)
ACE_THROW_SPEC ((CORBA::SystemException));
virtual void destroy_interceptors (ACE_ENV_SINGLE_ARG_DECL)
ACE_THROW_SPEC ((CORBA::SystemException));
virtual TAO_IORInterceptor_List *interceptor_list (void)
ACE_THROW_SPEC ((CORBA::SystemException));
private:
/// List of IOR interceptors maintained
TAO_IORInterceptor_List ior_interceptor_list_;
};
#include /**/ "ace/post.h"
#endif /* TAO_IORINTERCEPTOR_ADAPTER_IMPL_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?