be_home.cpp
来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· C++ 代码 · 共 117 行
CPP
117 行
// be_home.cpp,v 1.7 2003/11/05 03:20:27 bala Exp
// ============================================================================
//
// = LIBRARY
// TAO IDL
//
// = FILENAME
// be_home.cpp
//
// = DESCRIPTION
// Extension of class AST_Home that provides additional means for C++
// mapping of a component home.
//
// = AUTHOR
// Jeff Parsons
//
// ============================================================================
#include "be_home.h"
#include "be_component.h"
#include "be_visitor.h"
#include "global_extern.h"
ACE_RCSID (be,
be_home,
"be_home.cpp,v 1.7 2003/11/05 03:20:27 bala Exp")
be_home::be_home (void)
: COMMON_Base (),
AST_Decl (),
AST_Type (),
UTL_Scope (),
AST_Interface (),
AST_Home (),
be_scope (),
be_type (),
be_interface ()
{
this->size_type (AST_Type::VARIABLE);
}
be_home::be_home (UTL_ScopedName *n,
AST_Home *base_home,
AST_Component *managed_component,
AST_ValueType *primary_key,
AST_Interface **supports,
long n_supports,
AST_Interface **supports_flat,
long n_supports_flat)
: COMMON_Base (I_FALSE,
I_FALSE),
AST_Decl (AST_Decl::NT_home,
n),
AST_Type (AST_Decl::NT_home,
n),
UTL_Scope (AST_Decl::NT_home),
AST_Interface (n,
supports,
n_supports,
supports_flat,
n_supports_flat,
I_FALSE,
I_FALSE),
AST_Home (n,
base_home,
managed_component,
primary_key,
supports,
n_supports,
supports_flat,
n_supports_flat),
be_scope (AST_Decl::NT_home),
be_type (AST_Decl::NT_home,
n),
be_interface (n,
supports,
n_supports,
supports_flat,
n_supports_flat,
I_FALSE,
I_FALSE)
{
this->size_type (AST_Type::VARIABLE);
be_component *bt =
be_component::narrow_from_decl (managed_component);
bt->seen_in_operation ();
ACE_SET_BITS (idl_global->decls_seen_info_,
idl_global->decls_seen_masks.object_arg_seen_);
}
be_home::~be_home (void)
{
}
void
be_home::destroy (void)
{
// Can't call be_interface->destroy() because all the
// home's decls are also added to the explicit interface.
this->AST_Home::destroy ();
}
int
be_home::accept (be_visitor *visitor)
{
return visitor->visit_home (this);
}
// Narrowing
IMPL_NARROW_METHODS2 (be_home, be_interface, AST_Home)
IMPL_NARROW_FROM_DECL (be_home)
IMPL_NARROW_FROM_SCOPE (be_home)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?