2016-01-15 11:19:24 -08:00
|
|
|
#ifndef HELPERS_POINT_HELPERS_H_
|
|
|
|
|
#define HELPERS_POINT_HELPERS_H_
|
2015-12-02 17:28:52 -05:00
|
|
|
|
|
|
|
|
bool operator==(const TSPoint &left, const TSPoint &right);
|
|
|
|
|
|
|
|
|
|
bool operator<(const TSPoint &left, const TSPoint &right);
|
|
|
|
|
|
|
|
|
|
bool operator>(const TSPoint &left, const TSPoint &right);
|
|
|
|
|
|
|
|
|
|
std::ostream &operator<<(std::ostream &stream, const TSPoint &point);
|
2016-01-15 11:19:24 -08:00
|
|
|
|
|
|
|
|
#endif // HELPERS_POINT_HELPERS_H_
|