// $Id: circle.h,v 1.1 2006-11-04 19:20:32 cactus Exp $ -*- c++ -*- #ifndef EAF_CIRCLE_H #define EAF_CIRCLE_H #include "shape.h" class Circle: public Shape { double r; public: Circle (double r); double bounding_box_area () const; std::string str () const; }; #endif