make clipperlib::PolyNode and PolyTree visable from the outside
This commit is contained in:
parent
5ca850a17e
commit
529231f709
1 changed files with 4 additions and 4 deletions
8
deps/clipper/include/clipper.hpp
vendored
8
deps/clipper/include/clipper.hpp
vendored
|
@ -32,8 +32,8 @@
|
|||
*******************************************************************************/
|
||||
|
||||
#ifndef clipper_hpp
|
||||
#define clipper_hpp
|
||||
|
||||
#define clipper_hpp
|
||||
|
||||
#include <mapnik/config.hpp>
|
||||
|
||||
#define CLIPPER_VERSION "6.2.6"
|
||||
|
@ -135,7 +135,7 @@ enum EndType {etClosedPolygon, etClosedLine, etOpenButt, etOpenSquare, etOpenRou
|
|||
class PolyNode;
|
||||
typedef std::vector< PolyNode* > PolyNodes;
|
||||
|
||||
class PolyNode
|
||||
class MAPNIK_DECL PolyNode
|
||||
{
|
||||
public:
|
||||
PolyNode();
|
||||
|
@ -158,7 +158,7 @@ private:
|
|||
friend class MAPNIK_DECL ClipperOffset;
|
||||
};
|
||||
|
||||
class PolyTree: public PolyNode
|
||||
class MAPNIK_DECL PolyTree: public PolyNode
|
||||
{
|
||||
public:
|
||||
~PolyTree(){Clear();};
|
||||
|
|
Loading…
Add table
Reference in a new issue