~sharpie/geos/3.3.2

« back to all changes in this revision

Viewing changes to source/headers/geos/operation/union/CascadedPolygonUnion.h

  • Committer: Bazaar Package Importer
  • Author(s): Francesco Paolo Lovergine, Alan Boudreault, Francesco Paolo Lovergine
  • Date: 2011-03-03 13:40:04 UTC
  • mfrom: (1.2.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20110303134004-ocs5d23cuont0q61
Tags: 3.2.2-1
[ Alan Boudreault ]
* New upstream release.

[ Francesco Paolo Lovergine ]
* Policy set to 3.9.1, without changes.
* Merged log for post squeeze release.
* Repository moved to git and changed Vcs-* fields as required.
* Source format moved to 3.0 with quilt support.
* Policy changed to 3.9.1, without changes.
* Added ${misc:Depends} to bin pkgs due to dh use.
* Added -dbg package for debugging symbols.
  (closes: #582273)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/**********************************************************************
2
 
 * $Id: CascadedPolygonUnion.h 2571 2009-06-08 21:53:35Z strk $
 
2
 * $Id: CascadedPolygonUnion.h 2953 2010-03-26 12:03:45Z mloskot $
3
3
 *
4
4
 * GEOS - Geometry Engine Open Source
5
5
 * http://geos.refractions.net
19
19
 
20
20
#ifndef GEOS_OP_UNION_CASCADEDPOLYGONUNION_H
21
21
#define GEOS_OP_UNION_CASCADEDPOLYGONUNION_H
 
22
#include <geos/export.h>
22
23
 
23
24
#include <vector>
24
25
#include <algorithm>
100
101
 * where there is <i>no</i> overlap between the input geometries. 
101
102
 * However, this case is likely rare in practice.
102
103
 */
103
 
class CascadedPolygonUnion 
 
104
class GEOS_DLL CascadedPolygonUnion 
104
105
{
105
106
private:
106
107
    std::vector<geom::Polygon*>* inputPolys;