Public Member Functions | Private Attributes

TAO_PSDL_Value_Header Class Reference

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

#include <PSDL_Node.h>

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

List of all members.

Public Member Functions

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

Private Attributes

TAO_PSDL_Nodecustom_
 The values.
TAO_PSDL_Nodevalue_common_base_
TAO_PSDL_Nodevalue_inheritance_spec_

Detailed Description

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

Definition at line 2883 of file PSDL_Node.h.


Constructor & Destructor Documentation

TAO_PSDL_Value_Header::TAO_PSDL_Value_Header ( TAO_PSDL_Node value_common_base,
TAO_PSDL_Node value_inheritance_spec 
)

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

Definition at line 4518 of file PSDL_Node.cpp.

  : custom_ (0),
    value_common_base_ (value_common_base),
    value_inheritance_spec_ (value_inheritance_spec)
{
}

TAO_PSDL_Value_Header::TAO_PSDL_Value_Header ( TAO_PSDL_Node custom,
TAO_PSDL_Node value_common_base,
TAO_PSDL_Node value_inheritance_spec 
)

Definition at line 4527 of file PSDL_Node.cpp.

  : custom_ (custom),
    value_common_base_ (value_common_base),
    value_inheritance_spec_ (value_inheritance_spec)
{
}

TAO_PSDL_Value_Header::~TAO_PSDL_Value_Header ( void   )  [virtual]

Definition at line 4536 of file PSDL_Node.cpp.

{
  delete this->value_common_base_;

  if (this->custom_ != 0)
    delete this->custom_;

  delete this->value_inheritance_spec_;
}


Member Function Documentation

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

= The Node methods.

Implements TAO_PSDL_Node.

Definition at line 4567 of file PSDL_Node.cpp.

{
  return visitor->visit_value_header (this);
}

TAO_PSDL_Node * TAO_PSDL_Value_Header::custom ( void   )  const

Get the value.

Definition at line 4548 of file PSDL_Node.cpp.

{
  return this->custom_;
}

TAO_PSDL_Node * TAO_PSDL_Value_Header::value_common_base ( void   )  const

Definition at line 4554 of file PSDL_Node.cpp.

{
  return this->value_common_base_;
}

TAO_PSDL_Node * TAO_PSDL_Value_Header::value_inheritance_spec ( void   )  const

Definition at line 4560 of file PSDL_Node.cpp.

{
  return this->value_inheritance_spec_;
}


Member Data Documentation

The values.

Definition at line 2907 of file PSDL_Node.h.

Definition at line 2908 of file PSDL_Node.h.

Definition at line 2909 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