Public Member Functions | Private Attributes

TAO_PSDL_Value_Abs_Dcl Class Reference

**************************************************************** More...

#include <PSDL_Node.h>

Inheritance diagram for TAO_PSDL_Value_Abs_Dcl:
Inheritance graph
[legend]
Collaboration diagram for TAO_PSDL_Value_Abs_Dcl:
Collaboration graph
[legend]

List of all members.

Public Member Functions

 TAO_PSDL_Value_Abs_Dcl (TAO_PSDL_Node *value_common_base, TAO_PSDL_Node *export_variable)
 ****************************************************************
 TAO_PSDL_Value_Abs_Dcl (TAO_PSDL_Node *value_common_base, TAO_PSDL_Node *value_inheritance_spec, TAO_PSDL_Node *export_variable)
virtual ~TAO_PSDL_Value_Abs_Dcl (void)
TAO_PSDL_Nodevalue_common_base (void) const
 Get the value.
TAO_PSDL_Nodevalue_inheritance_spec (void) const
TAO_PSDL_Nodeexport_variable (void) const
int accept (TAO_PSDL_Node_Visitor *visitor)
 = The Node methods.

Private Attributes

TAO_PSDL_Nodevalue_common_base_
 The values.
TAO_PSDL_Nodevalue_inheritance_spec_
TAO_PSDL_Nodeexport_variable_

Detailed Description

****************************************************************

Definition at line 2827 of file PSDL_Node.h.


Constructor & Destructor Documentation

TAO_PSDL_Value_Abs_Dcl::TAO_PSDL_Value_Abs_Dcl ( TAO_PSDL_Node value_common_base,
TAO_PSDL_Node export_variable 
)

****************************************************************

Definition at line 4426 of file PSDL_Node.cpp.

  : value_common_base_ (value_common_base),
    value_inheritance_spec_ (0),
    export_variable_ (export_variable)
{
}

TAO_PSDL_Value_Abs_Dcl::TAO_PSDL_Value_Abs_Dcl ( TAO_PSDL_Node value_common_base,
TAO_PSDL_Node value_inheritance_spec,
TAO_PSDL_Node export_variable 
)

Definition at line 4435 of file PSDL_Node.cpp.

  : value_common_base_ (value_common_base),
    value_inheritance_spec_ (value_inheritance_spec),
    export_variable_ (export_variable)
{
}

TAO_PSDL_Value_Abs_Dcl::~TAO_PSDL_Value_Abs_Dcl ( void   )  [virtual]

Definition at line 4445 of file PSDL_Node.cpp.

{
  delete this->value_common_base_;
  delete this->export_variable_;

  if (this->value_inheritance_spec_ != 0)
    delete this->value_inheritance_spec_;
}


Member Function Documentation

int TAO_PSDL_Value_Abs_Dcl::accept ( TAO_PSDL_Node_Visitor visitor  )  [virtual]

= The Node methods.

Implements TAO_PSDL_Node.

Definition at line 4475 of file PSDL_Node.cpp.

{
  return visitor->visit_value_abs_dcl (this);
}

TAO_PSDL_Node * TAO_PSDL_Value_Abs_Dcl::export_variable ( void   )  const

Definition at line 4462 of file PSDL_Node.cpp.

{
  return this->export_variable_;
}

TAO_PSDL_Node * TAO_PSDL_Value_Abs_Dcl::value_common_base ( void   )  const

Get the value.

Definition at line 4456 of file PSDL_Node.cpp.

{
  return this->value_common_base_;
}

TAO_PSDL_Node * TAO_PSDL_Value_Abs_Dcl::value_inheritance_spec ( void   )  const

Definition at line 4468 of file PSDL_Node.cpp.

{
  return this->value_inheritance_spec_;
}


Member Data Documentation

Definition at line 2853 of file PSDL_Node.h.

The values.

Definition at line 2851 of file PSDL_Node.h.

Definition at line 2852 of file PSDL_Node.h.


The documentation for this class was generated from the following files:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Friends Defines