proxy_impl_xh.cpp
来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· C++ 代码 · 共 65 行
CPP
65 行
// proxy_impl_xh.cpp,v 1.6 2003/10/28 18:30:38 bala Exp
ACE_RCSID (be_visitor_operation,
proxy_impl_xh,
"proxy_impl_xh.cpp,v 1.6 2003/10/28 18:30:38 bala Exp")
be_visitor_operation_proxy_impl_xh::be_visitor_operation_proxy_impl_xh (
be_visitor_context *ctx
)
: be_visitor_operation (ctx)
{
}
be_visitor_operation_proxy_impl_xh::~be_visitor_operation_proxy_impl_xh (void)
{
}
int be_visitor_operation_proxy_impl_xh::visit_operation (be_operation *node)
{
TAO_OutStream *os = this->ctx_->stream ();
this->ctx_->node (node);
*os << be_nl << be_nl << "// TAO_IDL - Generated from" << be_nl
<< "// " << __FILE__ << ":" << __LINE__ << be_nl << be_nl;
*os << "static void" << be_nl;
// Check if we are an attribute node in disguise.
if (this->ctx_->attribute ())
{
// Now check if we are a "get" or "set" operation.
if (node->nmembers () == 1)
{
*os << "_set_";
}
else
{
*os << "_get_";
}
}
*os << node->local_name () << " (" << be_idt << be_idt_nl
<< "TAO_Abstract_ServantBase *servant," << be_nl
<< "TAO::Argument ** args," << be_nl
<< "int num_args" << be_nl
<< "ACE_ENV_ARG_DECL" << be_uidt_nl
<< ")";
if (this->gen_throw_spec (node) != 0)
{
ACE_ERROR_RETURN ((
LM_ERROR,
"(%N:%l) be_visitor_operation_proxy_impl_xh::"
"visit_operation - "
"throw spec generation failed\n"
),
-1
);
}
*os << ";";
return 0;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?