module_sh.cpp
来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· C++ 代码 · 共 88 行
CPP
88 行
// module_sh.cpp,v 1.10 2003/10/28 18:30:38 bala Exp
//
// ============================================================================
//
// = LIBRARY
// TAO IDL
//
// = FILENAME
// module_sh.cpp
//
// = DESCRIPTION
// Visitor generating code for Module in the server header
//
// = AUTHOR
// Aniruddha Gokhale
//
// ============================================================================
ACE_RCSID (be_visitor_module,
module_sh,
"module_sh.cpp,v 1.10 2003/10/28 18:30:38 bala Exp")
// ************************************************************
// Module visitor for server header
// ************************************************************
be_visitor_module_sh::be_visitor_module_sh (be_visitor_context *ctx)
: be_visitor_module (ctx)
{
}
be_visitor_module_sh::~be_visitor_module_sh (void)
{
}
int
be_visitor_module_sh::visit_module (be_module *node)
{
// Not generated and not imported.
if (node->srv_hdr_gen () || node->imported ())
{
return 0;
}
TAO_OutStream *os = this->ctx_->stream ();
*os << be_nl << be_nl << "// TAO_IDL - Generated from" << be_nl
<< "// " << __FILE__ << ":" << __LINE__ << be_nl << be_nl;
// Generate the skeleton class name.
// Now generate the class definition. The prefix POA_ is prepended to our
// name only if we are the outermost module.
*os << "namespace ";
if (!node->is_nested ())
{
// We are outermost module.
*os << "POA_" << node->local_name () << be_nl;
}
else
{
// We are inside another module.
*os << node->local_name () << be_nl;
}
*os << "{" << be_idt_nl;
if (this->visit_scope (node) == -1)
{
ACE_ERROR_RETURN ((LM_ERROR,
"(%N:%l) be_visitor_module_sh::"
"visit_module - "
"codegen for scope failed\n"),
-1);
}
*os << be_uidt_nl << be_nl << "// TAO_IDL - Generated from" << be_nl
<< "// " << __FILE__ << ":" << __LINE__ << be_nl << be_nl;
*os << "} // module "
<< node->name ();
return 0;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?