#ifndef __CIF_POLYGON_H #define __CIF_POLYGON_H #include #include namespace IO { class CifPolygon { public: CifPolygon(long); void addPoint (long, long); void write ( ofstream& ); private: long _layer; std::vector > _points; }; } // namespace #endif