📄 psdl_node.cpp
字号:
int
TAO_PSDL_Psdl_State_Dcl::accept (TAO_PSDL_Node_Visitor *visitor)
{
return visitor->visit_psdl_state_dcl (this);
}
/// ****************************************************************
TAO_PSDL_Psdl_State_Type_Spec::TAO_PSDL_Psdl_State_Type_Spec (TAO_PSDL_Node *type_spec)
: type_spec_ (type_spec)
{
}
TAO_PSDL_Psdl_State_Type_Spec::~TAO_PSDL_Psdl_State_Type_Spec (void)
{
delete this->type_spec_;
}
TAO_PSDL_Node *
TAO_PSDL_Psdl_State_Type_Spec::type_spec (void) const
{
return this->type_spec_;
}
int
TAO_PSDL_Psdl_State_Type_Spec::accept (TAO_PSDL_Node_Visitor *visitor)
{
return visitor->visit_psdl_state_type_spec (this);
}
/// ****************************************************************
TAO_PSDL_Abstract_Storagetype_Ref_Type::TAO_PSDL_Abstract_Storagetype_Ref_Type (TAO_PSDL_Node *key_word,
TAO_PSDL_Node *abs_storagetype_name)
: key_word_ (key_word),
abs_storagetype_name_ (abs_storagetype_name)
{
}
TAO_PSDL_Abstract_Storagetype_Ref_Type::TAO_PSDL_Abstract_Storagetype_Ref_Type (TAO_PSDL_Node *abs_storagetype_name)
: key_word_ (0),
abs_storagetype_name_ (abs_storagetype_name)
{
}
TAO_PSDL_Abstract_Storagetype_Ref_Type::~TAO_PSDL_Abstract_Storagetype_Ref_Type (void)
{
if (this->key_word_ != 0)
delete this->key_word_;
delete this->abs_storagetype_name_;
}
/// Get the value
TAO_PSDL_Node *
TAO_PSDL_Abstract_Storagetype_Ref_Type::key_word (void) const
{
return this->key_word_;
}
TAO_PSDL_Node *
TAO_PSDL_Abstract_Storagetype_Ref_Type::abs_storagetype_name (void) const
{
return this->abs_storagetype_name_;
}
/// = The Node methods.
int
TAO_PSDL_Abstract_Storagetype_Ref_Type::accept (TAO_PSDL_Node_Visitor *visitor)
{
return visitor->visit_abstract_storagetype_ref_type (this);
}
/// ****************************************************************
TAO_PSDL_Abstract_Storagehome::TAO_PSDL_Abstract_Storagehome (TAO_PSDL_Node *abs_storagehome_dcl)
: abs_storagehome_dcl_ (abs_storagehome_dcl)
{
}
TAO_PSDL_Abstract_Storagehome::~TAO_PSDL_Abstract_Storagehome (void)
{
delete this->abs_storagehome_dcl_;
}
/// Get the value
TAO_PSDL_Node *
TAO_PSDL_Abstract_Storagehome::abs_storagehome_dcl (void) const
{
return this->abs_storagehome_dcl_;
}
/// = The Node methods.
int
TAO_PSDL_Abstract_Storagehome::accept (TAO_PSDL_Node_Visitor *visitor)
{
return visitor->visit_abstract_storagehome (this);
}
/// ****************************************************************
TAO_PSDL_Abstract_Storagehome_Fwd_Dcl::TAO_PSDL_Abstract_Storagehome_Fwd_Dcl (
TAO_PSDL_Node *identifier)
: identifier_ (identifier)
{
}
TAO_PSDL_Abstract_Storagehome_Fwd_Dcl::~TAO_PSDL_Abstract_Storagehome_Fwd_Dcl (void)
{
delete this->identifier_;
}
/// Get the value
TAO_PSDL_Node *
TAO_PSDL_Abstract_Storagehome_Fwd_Dcl::identifier (void) const
{
return this->identifier_;
}
/// = The Node methods.
int
TAO_PSDL_Abstract_Storagehome_Fwd_Dcl::accept (TAO_PSDL_Node_Visitor *visitor)
{
return visitor->visit_abstract_storagehome_fwd_dcl (this);
}
/// ****************************************************************
TAO_PSDL_Abstract_Storagehome_Dcl::TAO_PSDL_Abstract_Storagehome_Dcl (TAO_PSDL_Node *abs_storagehome_header)
: abs_storagehome_header_ (abs_storagehome_header),
abs_storagehome_body_ (0)
{
}
TAO_PSDL_Abstract_Storagehome_Dcl::TAO_PSDL_Abstract_Storagehome_Dcl (TAO_PSDL_Node *abs_storagehome_header,
TAO_PSDL_Node *abs_storagehome_body)
: abs_storagehome_header_ (abs_storagehome_header),
abs_storagehome_body_ (abs_storagehome_body)
{
}
TAO_PSDL_Abstract_Storagehome_Dcl::~TAO_PSDL_Abstract_Storagehome_Dcl (void)
{
delete this->abs_storagehome_header_;
delete this->abs_storagehome_body_;
}
/// Get the value
TAO_PSDL_Node *
TAO_PSDL_Abstract_Storagehome_Dcl::abs_storagehome_header (void) const
{
return this->abs_storagehome_header_;
}
TAO_PSDL_Node *
TAO_PSDL_Abstract_Storagehome_Dcl::abs_storagehome_body (void) const
{
return this->abs_storagehome_body_;
}
/// = The Node methods.
int
TAO_PSDL_Abstract_Storagehome_Dcl::accept (TAO_PSDL_Node_Visitor *visitor)
{
return visitor->visit_abstract_storagehome_dcl (this);
}
/// ****************************************************************
TAO_PSDL_Abstract_Storagehome_Header::TAO_PSDL_Abstract_Storagehome_Header (TAO_PSDL_Node *identifier,
TAO_PSDL_Node *abs_storagetype_name)
: identifier_ (identifier),
abs_storagetype_name_ (abs_storagetype_name),
abs_storagehome_inh_spec_ (0)
{
}
TAO_PSDL_Abstract_Storagehome_Header::TAO_PSDL_Abstract_Storagehome_Header (TAO_PSDL_Node *identifier,
TAO_PSDL_Node *abs_storagetype_name,
TAO_PSDL_Node *abs_storagehome_inh_spec)
: identifier_ (identifier),
abs_storagetype_name_ (abs_storagetype_name),
abs_storagehome_inh_spec_ (abs_storagehome_inh_spec)
{
}
TAO_PSDL_Abstract_Storagehome_Header::~TAO_PSDL_Abstract_Storagehome_Header (void)
{
}
/// Get the value
TAO_PSDL_Node *
TAO_PSDL_Abstract_Storagehome_Header::identifier (void) const
{
return this->identifier_;
}
TAO_PSDL_Node *
TAO_PSDL_Abstract_Storagehome_Header::abs_storagetype_name (void) const
{
return this->abs_storagetype_name_;
}
TAO_PSDL_Node *
TAO_PSDL_Abstract_Storagehome_Header::abs_storagehome_inh_spec (void) const
{
return this->abs_storagehome_inh_spec_;
}
/// = The Node methods.
int
TAO_PSDL_Abstract_Storagehome_Header::accept (TAO_PSDL_Node_Visitor *visitor)
{
return visitor->visit_abstract_storagehome_header (this);
}
/// ****************************************************************
TAO_PSDL_Abstract_Storagehome_Body::TAO_PSDL_Abstract_Storagehome_Body ()
{
}
TAO_PSDL_Abstract_Storagehome_Body::TAO_PSDL_Abstract_Storagehome_Body (TAO_PSDL_Node *abs_storagehome_member)
: abs_storagehome_member_ (abs_storagehome_member)
{
}
TAO_PSDL_Abstract_Storagehome_Body::TAO_PSDL_Abstract_Storagehome_Body (TAO_PSDL_Node *abs_storagehome_member,
TAO_PSDL_Node *abs_storagehome_body)
: abs_storagehome_member_ (abs_storagehome_member),
abs_storagehome_body_ (abs_storagehome_body)
{
}
TAO_PSDL_Abstract_Storagehome_Body::~TAO_PSDL_Abstract_Storagehome_Body (void)
{
delete this->abs_storagehome_member_;
if (this->abs_storagehome_body_ != 0)
delete this->abs_storagehome_body_;
}
/// Get the value
TAO_PSDL_Node *
TAO_PSDL_Abstract_Storagehome_Body::abs_storagehome_member (void) const
{
return this->abs_storagehome_member_;
}
TAO_PSDL_Node *
TAO_PSDL_Abstract_Storagehome_Body::abs_storagehome_body (void) const
{
return this->abs_storagehome_body_;
}
/// = The Node methods.
int
TAO_PSDL_Abstract_Storagehome_Body::accept (TAO_PSDL_Node_Visitor *visitor)
{
return visitor->visit_abstract_storagehome_body (this);
}
/// ****************************************************************
TAO_PSDL_Abstract_Storagehome_Member::TAO_PSDL_Abstract_Storagehome_Member (TAO_PSDL_Node *declaration_type)
: declaration_type_ (declaration_type)
{
}
TAO_PSDL_Abstract_Storagehome_Member::~TAO_PSDL_Abstract_Storagehome_Member (void)
{
delete this->declaration_type_;
}
/// Get the value
TAO_PSDL_Node *
TAO_PSDL_Abstract_Storagehome_Member::declaration_type (void) const
{
return this->declaration_type_;
}
/// = The Node methods.
int
TAO_PSDL_Abstract_Storagehome_Member::accept (TAO_PSDL_Node_Visitor *visitor)
{
return visitor->visit_abstract_storagehome_member (this);
}
/// ****************************************************************
TAO_PSDL_Abstract_Storagehome_Inh_Spec::TAO_PSDL_Abstract_Storagehome_Inh_Spec (TAO_PSDL_Node *abs_storagehome_name)
: abs_storagehome_name_ (abs_storagehome_name)
{
}
TAO_PSDL_Abstract_Storagehome_Inh_Spec::~TAO_PSDL_Abstract_Storagehome_Inh_Spec (void)
{
delete this->abs_storagehome_name_;
}
/// Get the value
TAO_PSDL_Node *
TAO_PSDL_Abstract_Storagehome_Inh_Spec::abs_storagehome_name (void) const
{
return this->abs_storagehome_name_;
}
/// = The Node methods.
int
TAO_PSDL_Abstract_Storagehome_Inh_Spec::accept (TAO_PSDL_Node_Visitor *visitor)
{
return visitor->visit_abstract_storagehome_inh_spec (this);
}
/// ****************************************************************
TAO_PSDL_Abstract_Storagehome_Name::TAO_PSDL_Abstract_Storagehome_Name (TAO_PSDL_Node *scoped_name)
: scoped_name_ (scoped_name),
abs_storagehome_name_ (0)
{
}
TAO_PSDL_Abstract_Storagehome_Name::TAO_PSDL_Abstract_Storagehome_Name (TAO_PSDL_Node *scoped_name,
TAO_PSDL_Node *abs_storagehome_name)
: scoped_name_ (scoped_name),
abs_storagehome_name_ (abs_storagehome_name)
{
}
TAO_PSDL_Abstract_Storagehome_Name::~TAO_PSDL_Abstract_Storagehome_Name (void)
{
delete this->scoped_name_;
if (this->abs_storagehome_name_ != 0)
delete this->abs_storagehome_name_;
}
/// Get the value
TAO_PSDL_Node *
TAO_PSDL_Abstract_Storagehome_Name::scoped_name (void) const
{
return this->scoped_name_;
}
TAO_PSDL_Node *
TAO_PSDL_Abstract_Storagehome_Name::abs_storagehome_name (void) const
{
return this->abs_storagehome_name_;
}
/// = The Node methods.
int
TAO_PSDL_Abstract_Storagehome_Name::accept (TAO_PSDL_Node_Visitor *visitor)
{
return visitor->visit_abstract_storagehome_name (this);
}
/// ****************************************************************
TAO_PSDL_Local_Op_Dcl::TAO_PSDL_Local_Op_Dcl (TAO_PSDL_Node *op_type_spec,
TAO_PSDL_Node *identifier,
TAO_PSDL_Node *parameter_dcls,
TAO_PSDL_Node *raises_expr)
: op_type_spec_ (op_type_spec),
identifier_ (identifier),
parameter_dcls_ (parameter_dcls),
raises_expr_ (raises_expr)
{
}
TAO_PSDL_Local_Op_Dcl::TAO_PSDL_Local_Op_Dcl (TAO_PSDL_Node *op_type_spec,
TAO_PSDL_Node *identifier,
TAO_PSDL_Node *parameter_dcls)
: op_type_spec_ (op_type_spec),
identifier_ (identifier),
parameter_dcls_ (parameter_dcls),
raises_expr_ (0)
{
}
TAO_PSDL_Local_Op_Dcl::~TAO_PSDL_Local_Op_Dcl (void)
{
delete this->op_type_spec_;
delete this->identifier_;
delete this->parameter_dcls_;
if (this->raises_expr_ != 0)
delete this->raises_expr_;
}
/// Get the value
TAO_PSDL_Node *
TAO_PSDL_Local_Op_Dcl::op_type_spec (void) const
{
return this->op_type_spec_;
}
TAO_PSDL_Node *
TAO_PSDL_Local_Op_Dcl::identifier (void) const
{
return this->identifier_;
}
TAO_PSDL_Node *
TAO_PSDL_Local_Op_Dcl::parameter_dcls (void) const
{
return this->parameter_dcls_;
}
TAO_PSDL_Node *
TAO_PSDL_Local_Op_Dcl::raises_expr (void) const
{
return this->raises_expr_;
}
/// = The Node methods.
int
TAO_PSDL_Local_Op_Dcl:: accept (TAO_PSDL_Node_Visitor *visitor)
{
return visitor->visit_local_op_dcl (this);
}
/// ****************************************************************
TAO_PSDL_Key_Dcl::TAO_PSDL_Key_Dcl (TAO_PSDL_Node *identifier,
TAO_PSDL_Node *simple_declarator)
: identifier_ (identifier),
simple_declarator_ (simple_declarator)
{
}
TAO_PSDL_Key_Dcl::TAO_PSDL_Key_Dcl (TAO_PSDL_Node *identifier)
: identifier_ (identifier),
simple_declarator_ (0)
{
}
TAO_PSDL_Key_Dcl::~TAO_PSDL_Key_Dcl (void)
{
delete this->identifier_;
if (this->simple_declarator_ != 0)
delete this->simple_declarator_;
}
/// Get the value
TAO_PSDL_Node *
TAO_PSDL_Key_Dcl::identifier (void) const
{
return this->identifier_;
}
TAO_PSDL_Node *
TAO_PSDL_Key_Dcl::simple_declarator (void) const
{
return this->simple_declarator_;
}
/// = The Node methods.
int
TAO_PSDL_Key_Dcl::accept (TAO_PSDL_Node_Visitor *visitor)
{
return visitor->visit_key_dcl (this);
}
/// ****************************************************************
TAO_PSDL_Catalog::TAO_PSDL_Catalog (TAO_PSDL_Node *identifier)
: identifier_ (identifier),
catalog_inh_spec_ (0),
catalog_body_ (0)
{
}
TAO_PSDL_Catalog::TAO_PSDL_Catalog (TAO_PSDL_Node *identifier,
TAO_PSDL_Node *catalog_inh_spec,
TAO_PSDL_Node *catalog_body)
:identifier_ (identifier),
catalog_inh_spec_ (catalog_inh_spec),
catalog_body_ (catalog_body)
{
}
TAO_PSDL_Catalog::TAO_PSDL_Catalog (TAO_PSDL_Node *identifier,
TAO_PSDL_Node *catalog_body)
: identifier_ (identifier),
catalog_inh_spec_ (0),
catalog_body_ (catalog_body)
{
}
TAO_PSDL_Catalog::~TAO_PSDL_Catalog (void)
{
delete this->identifier_;
if (this->catalog_inh_spec_ != 0)
delete this->catalog_inh_spec_;
delete this->catalog_body_;
}
/// Get the value
TAO_PSDL_Node *
TAO_PSDL_Catalog::identifier (void) const
{
return this->identifier_;
}
TAO_PSDL_Node *
TAO_PSDL_Catalog::catalog_inh_spec (void) const
{
return this->catalog_inh_spec_;
}
TAO_PSDL_Node *
TAO_PSDL_Catalog::catalog_body (void) const
{
return this->catalog_body_;
}
/// = The Node methods.
int
TAO_PSDL_Catalog::accept (TAO_PSDL_Node_Visitor *visitor)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -