// Copyright (c) 2007 GeometryFactory (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) : Andreas Fabri, Fernando Cacciola #ifndef CGAL_BOOST_GRAPH_HALFEDGE_GRAPH_TRAITS_HALFEDGEDS_H #define CGAL_BOOST_GRAPH_HALFEDGE_GRAPH_TRAITS_HALFEDGEDS_H #include #include #include #include #include namespace CGAL { template < class HDS > class HDS_all_undirected_edges_const_iterator : public HDS_all_edges_iterator_base { typedef HDS_all_edges_iterator_base Base ; public: typedef typename HDS::Edge_const_iterator Iterator; HDS_all_undirected_edges_const_iterator() {} HDS_all_undirected_edges_const_iterator( Iterator j) : Base(j) {} }; template < class HDS > class HDS_all_undirected_edges_iterator : public HDS_all_edges_iterator_base { typedef HDS_all_edges_iterator_base Base ; public: typedef typename HDS::Edge_iterator Iterator; HDS_all_undirected_edges_iterator() {} HDS_all_undirected_edges_iterator( Iterator j) : Base(j) {} }; template struct HDS_halfedge_graph_traits { public : typedef HDS_ HDS; typedef HDS_all_undirected_edges_iterator undirected_edge_iterator; typedef typename HDS::Vertex::Point Point ; }; } //namespace CGAL #endif // CGAL_BOOST_GRAPH_HALFEDGE_GRAPH_TRAITS_HALFEDGEDS_H