ord.h revision 63267518b4ce196caab66ef8cbdcfc0921206b3d
#ifndef __2GEOM_ORD__
#define __2GEOM_ORD__
namespace {
enum Cmp {
LESS_THAN=-1,
GREATER_THAN=1,
EQUAL_TO=0
};
inline Cmp operator-(Cmp x) {
switch(x) {
case LESS_THAN:
return GREATER_THAN;
case GREATER_THAN:
return LESS_THAN;
case EQUAL_TO:
return EQUAL_TO;
}
}
template <typename T1, typename T2>
inline Cmp cmp(T1 const &a, T2 const &b) {
if ( a < b ) {
return LESS_THAN;
} else if ( b < a ) {
return GREATER_THAN;
} else {
return EQUAL_TO;
}
}
}
#endif
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :