15 lines
164 B
C++
15 lines
164 B
C++
|
|
#ifndef POLYGON_H
|
|
#define POLYGON_H
|
|
|
|
#include <vector>
|
|
|
|
#include "refptr.h"
|
|
#include "Vector.h"
|
|
|
|
class Polygon : public std::vector< refptr<Vector> >
|
|
{
|
|
};
|
|
|
|
#endif
|