| 40 | typedef signed long long long64; |
| 41 | |
| 42 | struct IntPoint { |
| 43 | long64 X; |
| 44 | long64 Y; |
| 45 | IntPoint(long64 x = 0, long64 y = 0): X(x), Y(y) {}; |
| 46 | }; |
| 47 | |
| 48 | typedef std::vector< IntPoint > Polygon; |
| 49 | typedef std::vector< Polygon > Polygons; |
no outgoing calls
no test coverage detected