#include "shape.hpp" #include namespace Geometry{ class Polygon; } class Geometry::Polygon : public Geometry::Shape{ public: Polygon(std::string lab, int a); int getVertexCount() const; protected: int vertexCount; };