Public Member Functions | Private Attributes

TAO_PSDL_Value_Inheritance_Spec Class Reference

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

#include <PSDL_Node.h>

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

List of all members.

Public Member Functions

 TAO_PSDL_Value_Inheritance_Spec (TAO_PSDL_Node *interface_name)
 ****************************************************************
 TAO_PSDL_Value_Inheritance_Spec (TAO_PSDL_Node *value_name, TAO_PSDL_Node *interface_name)
 TAO_PSDL_Value_Inheritance_Spec (TAO_PSDL_Node *truncatable, TAO_PSDL_Node *value_name, TAO_PSDL_Node *interface_name)
virtual ~TAO_PSDL_Value_Inheritance_Spec (void)
TAO_PSDL_Nodetruncatable (void) const
 Get the value.
TAO_PSDL_Nodevalue_name (void) const
TAO_PSDL_Nodeinterface_name (void) const
int accept (TAO_PSDL_Node_Visitor *visitor)
 = The Node methods.

Private Attributes

TAO_PSDL_Nodetruncatable_
 The values.
TAO_PSDL_Nodevalue_name_
TAO_PSDL_Nodeinterface_name_

Detailed Description

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

Definition at line 2914 of file PSDL_Node.h.


Constructor & Destructor Documentation

TAO_PSDL_Value_Inheritance_Spec::TAO_PSDL_Value_Inheritance_Spec ( TAO_PSDL_Node interface_name  ) 

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

Definition at line 4574 of file PSDL_Node.cpp.

  : truncatable_ (0),
    value_name_ (0),
    interface_name_ (interface_name)
{
}

TAO_PSDL_Value_Inheritance_Spec::TAO_PSDL_Value_Inheritance_Spec ( TAO_PSDL_Node value_name,
TAO_PSDL_Node interface_name 
)

Definition at line 4582 of file PSDL_Node.cpp.

  : truncatable_ (0),
    value_name_ (value_name),
    interface_name_ (interface_name)
{
}

TAO_PSDL_Value_Inheritance_Spec::TAO_PSDL_Value_Inheritance_Spec ( TAO_PSDL_Node truncatable,
TAO_PSDL_Node value_name,
TAO_PSDL_Node interface_name 
)

Definition at line 4591 of file PSDL_Node.cpp.

  : truncatable_ (truncatable),
    value_name_ (value_name),
    interface_name_ (interface_name)
{
}

TAO_PSDL_Value_Inheritance_Spec::~TAO_PSDL_Value_Inheritance_Spec ( void   )  [virtual]

Definition at line 4601 of file PSDL_Node.cpp.

{
  if (this->truncatable_ != 0)
    delete this->truncatable_;

  delete this->interface_name_;

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


Member Function Documentation

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

= The Node methods.

Implements TAO_PSDL_Node.

Definition at line 4633 of file PSDL_Node.cpp.

{
  return visitor->visit_value_inheritance_spec (this);
}

TAO_PSDL_Node * TAO_PSDL_Value_Inheritance_Spec::interface_name ( void   )  const

Definition at line 4626 of file PSDL_Node.cpp.

{
  return this->interface_name_;
}

TAO_PSDL_Node * TAO_PSDL_Value_Inheritance_Spec::truncatable ( void   )  const

Get the value.

Definition at line 4614 of file PSDL_Node.cpp.

{
  return this->truncatable_;
}

TAO_PSDL_Node * TAO_PSDL_Value_Inheritance_Spec::value_name ( void   )  const

Definition at line 4620 of file PSDL_Node.cpp.

{
  return this->value_name_;
}


Member Data Documentation

Definition at line 2953 of file PSDL_Node.h.

The values.

Definition at line 2951 of file PSDL_Node.h.

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