objectreferencefactory.h
来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· C头文件 代码 · 共 92 行
H
92 行
// -*- C++ -*-
//=============================================================================
/**
* @file ObjectReferenceFactory.h
*
* ObjectReferenceFactory.h,v 1.1 2002/10/26 04:49:29 ossama Exp
* @author Ossama Othman <ossama@uci.edu>
*/
//=============================================================================
#ifndef TAO_OBJECT_REFERENCE_FACTORY_H
#define TAO_OBJECT_REFERENCE_FACTORY_H
#include "ObjectReferenceFactoryC.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#if defined(_MSC_VER)
#if (_MSC_VER >= 1200)
#pragma warning(push)
#endif /* _MSC_VER >= 1200 */
#pragma warning(disable:4250)
#endif /* _MSC_VER */
/**
* @class ObjectReferenceFactory
*
* @brief Implementation of the PortableInterceptor::ObjectReferenceFactory
* interface.
*
* This ObjectReferenceFactory creates simply delegates all tasks on
* to the old ObjectReferenceFactory. It merely exists to test the
* @c IORInfo::current_factory attribute internals.
*/
class ObjectReferenceFactory
: public virtual CORBA::DefaultValueRefCountBase
, public virtual OBV_ORT_Test::ObjectReferenceFactory
{
public:
/// Constructor
ObjectReferenceFactory (
PortableInterceptor::ObjectReferenceFactory * old_orf);
/**
* @name PortableInterceptor::ObjectReferenceFactory Methods
*
* Methods required by the
* PortableInterceptor::ObjectReferenceFactory interface.
*/
//@{
virtual CORBA::Object_ptr make_object (
const char *repository_id,
const PortableInterceptor::ObjectId & id
ACE_ENV_ARG_DECL_WITH_DEFAULTS)
ACE_THROW_SPEC ((CORBA::SystemException));
//@}
protected:
/// Destructor
/**
* Protected destructor to enforce proper memory management via
* reference counting.
*/
~ObjectReferenceFactory (void);
private:
/// The old ObjectReferenceFactory used to create object references.
/**
* This ObjectReferenceFactory will still be used when creating
* object references. However, it will be invoked through this
* ObjectReferenceFactory.
*/
PortableInterceptor::ObjectReferenceFactory_var old_orf_;
};
#if defined (_MSC_VER) && (_MSC_VER >= 1200)
#pragma warning(pop)
#endif /* _MSC_VER */
#endif /* TAO_OBJECT_REFERENCE_FACTORY_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?