#ifndef POLYGON_H #define POLYGON_H #include #include "refptr.h" #include "Vector.h" class Polygon : public std::vector< refptr > { }; #endif