ami_handler_reply_stub_operation_ch.cpp
来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· C++ 代码 · 共 86 行
CPP
86 行
//
// ami_handler_reply_stub_operation_ch.cpp,v 1.8 2002/09/25 16:25:36 parsons Exp
//
// ============================================================================
//
// = LIBRARY
// TAO IDL
//
// = FILENAME
// ami_handler_reply_stub_operation_ch.cpp
//
// = DESCRIPTION
// Visitor generating code for AMI Handler call back operation in
// the client header.
//
// = AUTHOR
// Aniruddha Gokhale and Alexander Babu Arulanthu
// <alex@cs.wustl.edu>
//
// ============================================================================
ACE_RCSID (be_visitor_operation,
ami_handler_reply_stub_operation_ch,
"ami_handler_reply_stub_operation_ch.cpp,v 1.8 2002/09/25 16:25:36 parsons Exp")
// ************************************************************
// Operation visitor for server header
// ************************************************************
be_visitor_operation_ami_handler_reply_stub_operation_ch::
be_visitor_operation_ami_handler_reply_stub_operation_ch (be_visitor_context *ctx)
: be_visitor_operation (ctx)
{
}
be_visitor_operation_ami_handler_reply_stub_operation_ch::
~be_visitor_operation_ami_handler_reply_stub_operation_ch (void)
{
}
int
be_visitor_operation_ami_handler_reply_stub_operation_ch::visit_operation (
be_operation *node
)
{
TAO_OutStream *os = this->ctx_->stream ();
this->ctx_->node (node);
// Generate the corresponding static skeleton method for this
// operation only if there was no "native" type.
if (!node->has_native ())
{
// Next line.
*os << be_nl << be_nl
<< "static void ";
// 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 ()
<< "_reply_stub (" << be_idt << be_idt_nl;
*os << "TAO_InputCDR &_tao_reply_cdr," << be_nl
<< "Messaging::ReplyHandler_ptr _tao_reply_handler," << be_nl
<< "CORBA::ULong reply_status";
*os << be_nl
<< "ACE_ENV_ARG_DECL_WITH_DEFAULTS" << be_uidt_nl
<< ");" << be_uidt;
}
return 0;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?