#ifndef CIRCLE_H #define CIRCLE_H #include "Point.h" class Circle { public: // Constructors Circle(const Point&, double = 1); Circle(double = 0, double = 0, double = 1); // Methods bool inArea(const Point&) const; void print() const; private: Point center; double radius; }; #endif // CIRCLE_H