#include #include #include typedef CGAL::Simple_cartesian Kernel; typedef Kernel::Point_3 Point_3; typedef CGAL::Surface_mesh Mesh; typedef boost::graph_traits::vertex_descriptor vertex_descriptor; int main() { boost::unordered_map bum; Mesh mesh; vertex_descriptor vd = mesh.add_vertex(); bum[vd] = 7812; return 0; }