#ifndef _POINT_CMP_LEX_OPERATOR_H

#define _POINT_CMP_LEX_OPERATOR_H

namespace CGAL
{
   bool operator < (const Point_2<K> & p, const Point_2<K> & q)
   {
      if (p.x() < q.x())
	 return true;
      if (p.x() > q.x())
	 return false;
      if (p.y() < q.y())
	 return true;
      return false;
   }
}

#endif

