#include #include using namespace std; class BoundingBox { public: int smallestArea(const vector &X, const vector &Y); }; int BoundingBox::smallestArea(const vector &X, const vector &Y) { return 0; }