📄 root_si.cpp
字号:
//
// root_si.cpp,v 1.5 2002/07/01 13:49:20 parsons Exp
//
// ============================================================================
//
// = LIBRARY
// TAO IDL
//
// = FILENAME
// root_si.cpp
//
// = DESCRIPTION
// Visitor generating code for the Root in the server inline file
//
// = AUTHOR
// Aniruddha Gokhale
//
// ============================================================================
ACE_RCSID (be_visitor_root,
root_si,
"root_si.cpp,v 1.5 2002/07/01 13:49:20 parsons Exp")
// ***********************************************
// Root visitor for server inline
// ***********************************************
be_visitor_root_si::be_visitor_root_si (be_visitor_context *ctx)
: be_visitor_root (ctx)
{
}
be_visitor_root_si::~be_visitor_root_si (void)
{
}
int
be_visitor_root_si::init (void)
{
// first open the file for writing
if (tao_cg->start_server_inline (be_global->be_get_server_inline_fname ())
== -1)
{
ACE_ERROR_RETURN ((LM_ERROR,
"(%N:%l) be_visitor_root_si::init - "
"server inline open failed\n"),
-1);
}
if (be_global->gen_tie_classes ())
{
if (tao_cg->start_server_template_inline (
be_global->be_get_server_template_inline_fname ()
)
== -1)
{
ACE_ERROR_RETURN ((LM_ERROR,
"(%N:%l) be_visitor_root_si::init - "
"Error opening server template inline file\n"),
-1);
}
}
// init stream
this->ctx_->stream (tao_cg->server_inline ());
return 0;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -