1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
// Copyright (c) 2015 INRIA Sophia-Antipolis (France), INRIA Lorraine LORIA.
// All rights reserved.
//
// This file is part of CGAL (www.cgal.org).
//
// $URL: https://github.com/CGAL/cgal/blob/v6.1/Ridges_3/include/CGAL/Vertex2Data_Property_Map_with_std_map.h $
// $Id: include/CGAL/Vertex2Data_Property_Map_with_std_map.h b26b07a1242 $
// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial
//
// Author(s) : Marc Pouget and Frédéric Cazals
#ifndef CGAL_VERTEX2DATA_PROPERTY_MAP_WITH_STD_MAP_H
#define CGAL_VERTEX2DATA_PROPERTY_MAP_WITH_STD_MAP_H
#include <CGAL/license/Ridges_3.h>
#include <map>
namespace boost {
template <typename G>
class graph_traits;
template <typename T>
class associative_property_map;
}
//---------------------------------------------------------------------------
//Vertex2Data_Property_Map_with_std_map
// defines models for Vertex2FTPropertyMap and Vertex2VectorPropertyMap
//--------------------------------------------------------------------------
template < class TriangulatedSurfaceMesh >
class Vertex2Data_Property_Map_with_std_map
{
public:
typedef typename TriangulatedSurfaceMesh::Traits::FT FT;
typedef typename TriangulatedSurfaceMesh::Traits::Vector_3 Vector_3;
typedef typename boost::graph_traits<TriangulatedSurfaceMesh>::vertex_descriptor vertex_descriptor;
typedef std::map<vertex_descriptor, FT> Vertex2FT_map;
typedef boost::associative_property_map< Vertex2FT_map > Vertex2FT_property_map;
typedef std::map<vertex_descriptor, Vector_3> Vertex2Vector_map;
typedef boost::associative_property_map< Vertex2Vector_map > Vertex2Vector_property_map;
};
#endif
|