union_ci.cpp
来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· C++ 代码 · 共 97 行
CPP
97 行
//
// union_ci.cpp,v 1.20 2003/04/22 20:50:06 bala Exp
//
// ============================================================================
//
// = LIBRARY
// TAO IDL
//
// = FILENAME
// union_ci.cpp
//
// = DESCRIPTION
// Visitor generating code for Union in the client inline file
//
// = AUTHOR
// Aniruddha Gokhale
//
// ============================================================================
ACE_RCSID (be_visitor_union,
union_ci,
"union_ci.cpp,v 1.20 2003/04/22 20:50:06 bala Exp")
// ******************************************************
// For client inline.
// ******************************************************
be_visitor_union_ci::be_visitor_union_ci (be_visitor_context *ctx)
: be_visitor_union (ctx)
{
}
be_visitor_union_ci::~be_visitor_union_ci (void)
{
}
int be_visitor_union_ci::visit_union (be_union *node)
{
if (node->cli_inline_gen () || node->imported ())
{
return 0;
}
be_visitor_context ctx (*this->ctx_);
ctx.node (node);
TAO_OutStream *os = this->ctx_->stream ();
*os << be_nl << be_nl << "// TAO_IDL - Generated from" << be_nl
<< "// " << __FILE__ << ":" << __LINE__ << be_nl << be_nl;
*os << "// *************************************************************"
<< be_nl;
*os << "// Inline operations for union " << node->name () << be_nl;
*os << "// *************************************************************";
// the discriminant type may have to be defined here if it was an enum
// declaration inside of the union statement.
be_type *bt = be_type::narrow_from_decl (node->disc_type ());
if (!bt)
{
ACE_ERROR_RETURN ((LM_ERROR,
"(%N:%l) be_visitor_union_ci::"
"visit_union - "
"bad discriminant type\n"),
-1);
}
be_visitor_union_discriminant_ci visitor (&ctx);
if (bt->accept (&visitor) == -1)
{
ACE_ERROR_RETURN ((LM_ERROR,
"(%N:%l) be_visitor_union_ci::"
"visit union - "
"codegen for discrminant failed\n"),
-1);
}
// Now generate the implementation of the access methods for the
// union. For this set our state.
if (this->visit_scope (node) == -1)
{
ACE_ERROR_RETURN ((LM_ERROR,
"(%N:%l) be_visitor_union_ci::"
"visit_union - "
"codegen for scope failed\n"),
-1);
}
node->cli_inline_gen (I_TRUE);
return 0;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?