#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_Fixed_Pt_Type:
Public Member Functions | |
TAO_PSDL_Fixed_Pt_Type (TAO_PSDL_Node *positive_int_const_one, TAO_PSDL_Node *positive_int_const_two) | |
**************************************************************** | |
virtual | ~TAO_PSDL_Fixed_Pt_Type (void) |
TAO_PSDL_Node * | positive_int_const_one (void) const |
Get the value. | |
TAO_PSDL_Node * | positive_int_const_two (void) const |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
TAO_PSDL_Node * | positive_int_const_one_ |
The values. | |
TAO_PSDL_Node * | positive_int_const_two_ |
Definition at line 2443 of file PSDL_Node.h.
TAO_PSDL_Fixed_Pt_Type::TAO_PSDL_Fixed_Pt_Type | ( | TAO_PSDL_Node * | positive_int_const_one, | |
TAO_PSDL_Node * | positive_int_const_two | |||
) |
****************************************************************
Definition at line 3836 of file PSDL_Node.cpp.
03839 : positive_int_const_one_ (positive_int_const_one), 03840 positive_int_const_two_ (positive_int_const_two) 03841 { 03842 }
TAO_PSDL_Fixed_Pt_Type::~TAO_PSDL_Fixed_Pt_Type | ( | void | ) | [virtual] |
Definition at line 3844 of file PSDL_Node.cpp.
References positive_int_const_one_, and positive_int_const_two_.
03845 { 03846 delete this->positive_int_const_one_; 03847 delete this->positive_int_const_two_; 03848 }
int TAO_PSDL_Fixed_Pt_Type::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= The Node methods.
Implements TAO_PSDL_Node.
Definition at line 3864 of file PSDL_Node.cpp.
References TAO_PSDL_Node_Visitor::visit_fixed_pt_type().
03865 { 03866 return visitor->visit_fixed_pt_type (this); 03867 }
TAO_PSDL_Node * TAO_PSDL_Fixed_Pt_Type::positive_int_const_one | ( | void | ) | const |
Get the value.
Definition at line 3852 of file PSDL_Node.cpp.
References positive_int_const_one_.
Referenced by TAO_PSDL_Scope_Visitor::visit_fixed_pt_type(), and Dump_Visitor::visit_fixed_pt_type().
03853 { 03854 return this->positive_int_const_one_; 03855 }
TAO_PSDL_Node * TAO_PSDL_Fixed_Pt_Type::positive_int_const_two | ( | void | ) | const |
Definition at line 3858 of file PSDL_Node.cpp.
References positive_int_const_two_.
Referenced by TAO_PSDL_Scope_Visitor::visit_fixed_pt_type(), and Dump_Visitor::visit_fixed_pt_type().
03859 { 03860 return this->positive_int_const_two_; 03861 }
The values.
Definition at line 2461 of file PSDL_Node.h.
Referenced by positive_int_const_one(), and ~TAO_PSDL_Fixed_Pt_Type().
Definition at line 2462 of file PSDL_Node.h.
Referenced by positive_int_const_two(), and ~TAO_PSDL_Fixed_Pt_Type().