mirror of https://github.com/CGAL/cgal
99 lines
3.8 KiB
C++
99 lines
3.8 KiB
C++
// Copyright (c) 2016 CNRS and LIRIS' Establishments (France).
|
|
// All rights reserved.
|
|
//
|
|
// This file is part of CGAL (www.cgal.org)
|
|
//
|
|
// $URL$
|
|
// $Id$
|
|
// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial
|
|
//
|
|
// Author(s) : Guillaume Damiand <guillaume.damiand@liris.cnrs.fr>
|
|
//
|
|
#ifndef CGAL_GMAP_CELL_CONST_ITERATORS_H
|
|
#define CGAL_GMAP_CELL_CONST_ITERATORS_H 1
|
|
|
|
#include <CGAL/GMap_cell_iterators.h>
|
|
|
|
// TODO do all the orbit iterator of any orbit ?
|
|
|
|
namespace CGAL {
|
|
|
|
/** @file GMap_cell_const_iterators.h
|
|
* The cell const iterators. There are 3 classes:
|
|
* - GMap_cell_const_iterator<Map,i,dim>
|
|
* - GMap_one_dart_per_incident_cell_const_iterator<Map,Ite,i,dim>
|
|
* - GMap_one_dart_per_cell_const_iterator<Map,Ite,i,dim>
|
|
*/
|
|
|
|
//****************************************************************************
|
|
template <typename Map_,unsigned int i,unsigned int dim=Map_::dimension>
|
|
class GMap_cell_const_iterator: public GMap_cell_iterator<Map_,i,dim,true>
|
|
{
|
|
public:
|
|
typedef GMap_cell_iterator<Map_,i,dim,true> Base;
|
|
typedef typename Map_::Dart_const_descriptor Dart_const_descriptor;
|
|
|
|
/// Main constructor.
|
|
GMap_cell_const_iterator(const Map_& amap,
|
|
Dart_const_descriptor adart):
|
|
Base(amap,adart)
|
|
{}
|
|
/// Constructor from non const version.
|
|
GMap_cell_const_iterator
|
|
(const GMap_cell_iterator<Map_,i,dim,false>& it):
|
|
Base(*const_cast<const Map_*>(it.get_combinatorial_map()),
|
|
it.get_first_dart())
|
|
{}
|
|
};
|
|
//****************************************************************************
|
|
template <typename Map_,unsigned int i,unsigned int j,
|
|
unsigned int dim=Map_::dimension>
|
|
class GMap_one_dart_per_incident_cell_const_iterator:
|
|
public GMap_one_dart_per_incident_cell_iterator<Map_,i,j,dim,true>
|
|
{
|
|
public:
|
|
typedef GMap_one_dart_per_incident_cell_iterator<Map_,i,j,dim,true> Base;
|
|
typedef typename Map_::Dart_const_descriptor Dart_const_descriptor;
|
|
|
|
/// Main constructor.
|
|
GMap_one_dart_per_incident_cell_const_iterator(const Map_& amap,
|
|
Dart_const_descriptor adart):
|
|
Base(amap, adart)
|
|
{}
|
|
/// Constructor from non const version.
|
|
GMap_one_dart_per_incident_cell_const_iterator
|
|
(const GMap_one_dart_per_incident_cell_iterator<Map_,i,j,dim,false>& it):
|
|
Base(*const_cast<const Map_*>(it.get_combinatorial_map()),
|
|
it.get_first_dart())
|
|
{}
|
|
};
|
|
//****************************************************************************
|
|
template <typename Map_,unsigned int i,unsigned int dim=Map_::dimension>
|
|
class GMap_one_dart_per_cell_const_iterator:
|
|
public GMap_one_dart_per_cell_iterator<Map_,i,dim,true>
|
|
{
|
|
public:
|
|
typedef GMap_one_dart_per_cell_iterator<Map_,i,dim,true> Base;
|
|
typedef typename Map_::Dart_const_descriptor Dart_const_descriptor;
|
|
|
|
/// Main constructor.
|
|
GMap_one_dart_per_cell_const_iterator(const Map_& amap): Base(amap)
|
|
{}
|
|
/// Constructor with a dart in parameter (for end iterator).
|
|
GMap_one_dart_per_cell_const_iterator(const Map_& amap,
|
|
Dart_const_descriptor adart):
|
|
Base(amap)
|
|
{ this->set_current_dart(adart); }
|
|
/// Constructor from non const version.
|
|
GMap_one_dart_per_cell_const_iterator
|
|
(const GMap_one_dart_per_cell_iterator<Map_,i,dim,false>& it):
|
|
Base(*const_cast<const Map_*>(it.get_combinatorial_map()))
|
|
{}
|
|
};
|
|
//****************************************************************************
|
|
//****************************************************************************
|
|
} // namespace CGAL
|
|
//******************************************************************************
|
|
#endif // CGAL_GMAP_CELL_CONST_ITERATORS_H
|
|
//******************************************************************************
|