mirror of https://github.com/CGAL/cgal
No need to use the CGAL vector
This commit is contained in:
parent
c67608d37f
commit
64181a9d1c
|
|
@ -21,7 +21,7 @@
|
||||||
#define CGAL_PARTITIONED_POLYGON_2_H
|
#define CGAL_PARTITIONED_POLYGON_2_H
|
||||||
|
|
||||||
#include <list>
|
#include <list>
|
||||||
#include <CGAL/vector.h>
|
#include <vector>
|
||||||
#include <CGAL/circulator.h>
|
#include <CGAL/circulator.h>
|
||||||
|
|
||||||
namespace CGAL {
|
namespace CGAL {
|
||||||
|
|
@ -95,12 +95,12 @@ class Partition_vertex;
|
||||||
|
|
||||||
template <class Traits_>
|
template <class Traits_>
|
||||||
class Partitioned_polygon_2 :
|
class Partitioned_polygon_2 :
|
||||||
public CGALi::vector< Partition_vertex< Traits_ > >
|
public std::vector< Partition_vertex< Traits_ > >
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
typedef Traits_ Traits;
|
typedef Traits_ Traits;
|
||||||
typedef Partition_vertex<Traits> Vertex;
|
typedef Partition_vertex<Traits> Vertex;
|
||||||
typedef typename CGALi::vector< Vertex >::iterator Iterator;
|
typedef typename std::vector< Vertex >::iterator Iterator;
|
||||||
typedef Circulator_from_iterator<Iterator> Circulator;
|
typedef Circulator_from_iterator<Iterator> Circulator;
|
||||||
typedef typename Traits::Polygon_2 Subpolygon_2;
|
typedef typename Traits::Polygon_2 Subpolygon_2;
|
||||||
typedef typename Traits::Point_2 Point_2;
|
typedef typename Traits::Point_2 Point_2;
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,5 @@
|
||||||
|
|
||||||
|
|
||||||
// ============================================================================
|
// ============================================================================
|
||||||
//
|
//
|
||||||
// Copyright (c) 2000 The CGAL Consortium
|
// Copyright (c) 2000 The CGAL Consortium
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue