|
Aegis
4.25.D505
|
#include <relative.h>
Public Member Functions | |
| virtual | ~tree_le () |
Static Public Member Functions | |
| static pointer | create (const pointer &left, const pointer &right) |
Protected Member Functions | |
| const char * | name () const |
| rpt_value::pointer | evaluate (string_ty *, string_ty *, string_ty *, struct stat *) const |
| tree::pointer | optimize () const |
Private Member Functions | |
| tree_le (const pointer &left, const pointer &right) | |
| tree_le () | |
| tree_le (const tree_le &) | |
| tree_le & | operator= (const tree_le &) |
The tree_le class is used to represent an expression tree which performs a less than or equal comparison.
Definition at line 163 of file relative.h.
| virtual tree_le::~tree_le | ( | ) | [virtual] |
The destructor.
| tree_le::tree_le | ( | const pointer & | left, |
| const pointer & | right | ||
| ) | [private] |
The constructor. It is private on purpose, use the "create" clas smethod instead.
| left | The left hand argument to this function. |
| right | The right hand argument to this function. |
| tree_le::tree_le | ( | ) | [private] |
The default constructor. Do not use.
| tree_le::tree_le | ( | const tree_le & | ) | [private] |
The copy constructor. Do not use.
| static pointer tree_le::create | ( | const pointer & | left, |
| const pointer & | right | ||
| ) | [static] |
The create class method is used to create new dynamically allocated instance of this class.
| left | The left hand argument to this function. |
| right | The right hand argument to this function. |
| rpt_value::pointer tree_le::evaluate | ( | string_ty * | , |
| string_ty * | , | ||
| string_ty * | , | ||
| struct stat * | |||
| ) | const [protected, virtual] |
Implements tree.
| const char* tree_le::name | ( | ) | const [protected, virtual] |
Implements tree.
| tree::pointer tree_le::optimize | ( | ) | const [protected, virtual] |
Implements tree.
1.7.6.1