ast_component_fwd.cpp
来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· C++ 代码 · 共 62 行
CPP
62 行
// ast_component_fwd.cpp,v 1.5 2003/11/10 20:29:24 dhinton Exp
#include "ast_component_fwd.h"
#include "ast_visitor.h"
#include "utl_identifier.h"
ACE_RCSID( ast,
ast_component_fwd,
"ast_component_fwd.cpp,v 1.5 2003/11/10 20:29:24 dhinton Exp")
AST_ComponentFwd::AST_ComponentFwd (void)
: COMMON_Base (),
AST_Decl (),
AST_Type (),
AST_InterfaceFwd ()
{
}
AST_ComponentFwd::AST_ComponentFwd (AST_Interface *dummy,
UTL_ScopedName *n)
: COMMON_Base (I_TRUE,
I_FALSE),
AST_Decl (AST_Decl::NT_component_fwd,
n),
AST_Type (AST_Decl::NT_component_fwd,
n),
AST_InterfaceFwd (dummy,
n)
{
}
AST_ComponentFwd::~AST_ComponentFwd (void)
{
}
// Redefinition of inherited virtual operations.
// Dump this AST_InterfaceFwd node to the ostream o.
void
AST_ComponentFwd::dump (ACE_OSTREAM_TYPE &o)
{
this->dump_i (o, "component ");
this->local_name ()->dump (o);
}
int
AST_ComponentFwd::ast_accept (ast_visitor *visitor)
{
return visitor->visit_component_fwd (this);
}
void
AST_ComponentFwd::destroy (void)
{
this->AST_InterfaceFwd::destroy ();
}
// Narrowing methods.
IMPL_NARROW_METHODS1 (AST_ComponentFwd, AST_InterfaceFwd)
IMPL_NARROW_FROM_DECL (AST_ComponentFwd)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?