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