#include <ss_type.hh>
Public Member Functions | |
| bool | operator() (const ptr< ss_function > &left, const ptr< ss_function > &right) const |
| Compares two objects with less_than method. | |
| ss_function_comparator (void) | |
| Creates the object. | |
Provides comparator functional for ss_function objects.
Definition at line 52 of file ss_type.hh.
| lestes::lang::cplus::sem::ss_function_comparator::ss_function_comparator | ( | void | ) |
| bool lestes::lang::cplus::sem::ss_function_comparator::operator() | ( | const ptr< ss_function > & | left, | |
| const ptr< ss_function > & | right | |||
| ) | const |
Compares two objects with less_than method.
Compares two ss_function object with less_than method.
right != NULL
| left | The left argument for the comparison. | |
| right | The right argument for the comparison. |
Definition at line 464 of file ss_type.cc.
References lassert.
00465 { 00466 lassert(left && right); 00467 return left->less_than(right); 00468 }
1.5.1-20070107