be_eventtype.cpp
来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· C++ 代码 · 共 143 行
CPP
143 行
// be_eventtype.cpp,v 1.3 2003/06/18 17:16:16 parsons Exp
// ============================================================================
//
// = LIBRARY
// TAO IDL
//
// = FILENAME
// be_eventtype.cpp
//
// = DESCRIPTION
// Extension of class AST_EventType and be_valuetype that provides
// additional means for C++ mapping of an eventtype.
//
// = AUTHOR
// Jeff Parsons
//
// ============================================================================
#include "be_eventtype.h"
#include "be_visitor.h"
ACE_RCSID (be,
be_eventtype,
"be_eventtype.cpp,v 1.3 2003/06/18 17:16:16 parsons Exp")
// Default constructor.
be_eventtype::be_eventtype (void)
: COMMON_Base (),
AST_Decl (),
AST_Type (),
UTL_Scope (),
AST_Interface (),
be_scope (),
be_decl (),
be_type (),
be_interface (),
AST_ValueType (),
be_valuetype (),
AST_EventType ()
{
}
// Constructor used to build the AST.
be_eventtype::be_eventtype (UTL_ScopedName *n,
AST_Interface **inherits,
long n_inherits,
AST_ValueType *inherits_concrete,
AST_Interface **inherits_flat,
long n_inherits_flat,
AST_Interface **supports,
long n_supports,
AST_Interface *supports_concrete,
idl_bool abstract,
idl_bool truncatable,
idl_bool custom)
: COMMON_Base (0,
abstract),
AST_Decl (AST_Decl::NT_eventtype,
n),
AST_Type (AST_Decl::NT_eventtype,
n),
UTL_Scope (AST_Decl::NT_eventtype),
AST_Interface (n,
inherits,
n_inherits,
inherits_flat,
n_inherits_flat,
0,
abstract),
be_scope (AST_Decl::NT_eventtype),
be_decl (AST_Decl::NT_eventtype,
n),
be_type (AST_Decl::NT_eventtype,
n),
be_interface (n,
inherits,
n_inherits,
inherits_flat,
n_inherits_flat,
0,
abstract),
AST_ValueType (n,
inherits,
n_inherits,
inherits_concrete,
inherits_flat,
n_inherits_flat,
supports,
n_supports,
supports_concrete,
abstract,
truncatable,
custom),
be_valuetype (n,
inherits,
n_inherits,
inherits_concrete,
inherits_flat,
n_inherits_flat,
supports,
n_supports,
supports_concrete,
abstract,
truncatable,
custom),
AST_EventType (n,
inherits,
n_inherits,
inherits_concrete,
inherits_flat,
n_inherits_flat,
supports,
n_supports,
supports_concrete,
abstract,
truncatable,
custom)
{
}
be_eventtype::~be_eventtype (void)
{
}
// Accept a visitor.
int
be_eventtype::accept (be_visitor *visitor)
{
return visitor->visit_eventtype (this);
}
void
be_eventtype::destroy (void)
{
this->be_valuetype::destroy ();
}
// Narrowing.
IMPL_NARROW_METHODS2 (be_eventtype, be_valuetype, AST_EventType)
IMPL_NARROW_FROM_DECL (be_eventtype)
IMPL_NARROW_FROM_SCOPE (be_eventtype)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?