#ifndef CLOSESTPAIR #define CLOSESTPAIR #include "XYpoint.h" #include "pointpair.h" PointPair fastClosestPair(int n, XYPoint *points[]); PointPair naiveClosestPair(int n, XYPoint *points[]); #endif