@root classes

class BinaryOperator

^ 
    extends { Node, Node } as public

this is a generic class for binary operators and a parent class for specific operators such as +, -, etc
Source:
nodes.h:365
Author:
unascribed
Version:
unknown

Contents

^ 
EntityInherited FromTypeScopeShort Description
~BinaryOperatordestructor public destructor
BinaryOperatorconstructor publicundocumented
BinaryOperatorconstructor publicautomatically generated
descriptionmethod public return the name of the function
operator =operator publicautomatically generated
printToStringmethod public return a string of the operator along with its rhs and lhs

destructor ~BinaryOperator

? ^  > 
destructor
Source:
nodes.h:378
Code:
public virtual ~ BinaryOperator ( )

constructor BinaryOperator

? ^  < > 
undocumented
Source:
nodes.h:369
Code:
public BinaryOperator ( Node * lhs ,
Node * rhs ) : Node ( lhs ,
rhs )

constructor BinaryOperator

? ^  < > 
automatically generated
Source:
nodes.h
Code:
public BinaryOperator ( const BinaryOperator & )

method description

? ^  < > 
return the name of the function
Source:
nodes.h:395
Code:
public virtual string description ( ) const = 0

operator =

? ^  < > 
automatically generated
Source:
nodes.h
Code:
public BinaryOperator & operator = ( const BinaryOperator & )

method printToString

? ^  < > 
return a string of the operator along with its rhs and lhs
Source:
nodes.h:390
Code:
public virtual string printToString ( ) const

Created Sun Oct 6 20:57:00 2002.
This documentation was generated automatically by
ccdoc v0.8 r26 2001/11/28 bin_opt_suncc_solaris-2.8.
Click here to submit a bug report or feature request.
Click here to return to the top of the page.