📄 ft_proxyadmin_base.h
字号:
// -*- C++ -*-
//=============================================================================
/**
* @file FT_ProxyAdmin_Base.h
*
* FT_ProxyAdmin_Base.h,v 1.5 2003/11/24 04:07:41 huangming Exp
*
* @author Huang-Ming Huang <hh1@cse.wustl.edu>
*/
//=============================================================================
#ifndef FT_PROXYADMIN_BASE_H
#define FT_PROXYADMIN_BASE_H
#include /**/ "ace/pre.h"
#include "tao/corba.h"
#include "tao/PortableServer/Servant_Base.h"
#include "orbsvcs/FtRtecEventCommC.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
class FT_ProxyAdmin_Base
{
public:
FT_ProxyAdmin_Base(PortableServer::ServantBase* servant,
PortableServer::POA_var poa);
virtual ~FT_ProxyAdmin_Base();
void activate(const FtRtecEventComm::ObjectId& oid
ACE_ENV_ARG_DECL);
const FtRtecEventComm::ObjectId& object_id(ACE_ENV_SINGLE_ARG_DECL) const;
/// Returns an CORBA object reference when the servant is activated
CORBA::Object_var reference(ACE_ENV_SINGLE_ARG_DECL) const;
protected:
PortableServer::ServantBase* servant_;
/// Store the default POA.
PortableServer::POA_var poa_;
/// store the object id
FtRtecEventComm::ObjectId object_id_;
};
#include /**/ "ace/post.h"
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -