#ifndef __POLYGON_H #define __POLYGON_H template class SList { public: T *elem; int n; int elemsAllocated; }; class SEdge { public: Vector a, b; }; class SEdgeList { public: SList l; }; class SContour { public: SList l; }; class SPolygon { public: SList l; }; class SPolyhedron { SList l; public: }; #endif