1
0
Fork 0
This commit is contained in:
Wilfried Goesgens 2019-05-10 14:37:08 +02:00 committed by Jan
parent d62afaf8ea
commit ed01582433
3 changed files with 9 additions and 1 deletions

View File

@ -48,7 +48,7 @@ class S2Error;
class S2Loop;
class S2PolygonBuilder;
class S2Polyline;
class S2XYZFaceSiTi;
struct S2XYZFaceSiTi;
// An S2Polygon is an S2Region object that represents a polygon. A polygon is
// defined by zero or more loops; recall that the interior of a loop is

View File

@ -28,6 +28,10 @@
#include "s2/s2cell_id.h"
#include "s2/s2cell_union.h"
#ifdef _WIN32
#pragma warning(disable : 4200)
#endif
class S2Region;
// An S2RegionCoverer is a class that allows arbitrary regions to be

View File

@ -32,6 +32,10 @@
#include "s2/util/coding/varint.h"
#include "s2/util/endian/endian.h"
#ifdef _WIN32
#define memccpy _memccpy
#endif
/* Class for encoding data into a memory buffer */
class Decoder;
class Encoder {