root_sh.cpp
来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· C++ 代码 · 共 60 行
CPP
60 行
//
// root_sh.cpp,v 1.8 2002/07/01 13:49:20 parsons Exp
//
// ============================================================================
//
// = LIBRARY
// TAO IDL
//
// = FILENAME
// root_sh.cpp
//
// = DESCRIPTION
// Visitor generating code for Root in the server header
//
// = AUTHOR
// Aniruddha Gokhale
//
// ============================================================================
ACE_RCSID (be_visitor_root,
root_sh,
"root_sh.cpp,v 1.8 2002/07/01 13:49:20 parsons Exp")
// ***********************************
// Root visitor for server header
// ***********************************
be_visitor_root_sh::be_visitor_root_sh (be_visitor_context *ctx)
: be_visitor_root (ctx)
{
}
be_visitor_root_sh::~be_visitor_root_sh (void)
{
}
int
be_visitor_root_sh::init (void)
{
// open the file
if (tao_cg->start_server_header (be_global->be_get_server_hdr_fname ())
== -1)
{
ACE_ERROR_RETURN ((
LM_ERROR,
"(%N:%l) be_visitor_root_sh::init - "
"Error :%p: Unable to open server header file : %s\n",
"start_server_header",
be_global->be_get_server_hdr_fname ()
),
-1
);
}
// set the stream and the next state.
this->ctx_->stream (tao_cg->server_header ());
return 0;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?