📄 ins_locator.cpp
字号:
//=============================================================================
/**
* @file INS_Locator.cpp
*
* INS_Locator.cpp,v 1.2 2003/11/12 22:58:08 michel_j Exp
*
* @brief Implementation of the ImR's INS Locator class
*
* @author Darrell Brunsch <brunsch@cs.wustl.edu>
*/
//=============================================================================
#include "INS_Locator.h"
#include "ImR_Locator_i.h"
INS_Locator::INS_Locator (ImR_Locator_i* loc)
: imr_locator_ (loc)
{
}
char *
INS_Locator::locate (const char* object_key ACE_ENV_ARG_DECL)
ACE_THROW_SPEC ((CORBA::SystemException, IORTable::NotFound))
{
return this->imr_locator_->find_ior (object_key ACE_ENV_ARG_PARAMETER);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -