32 lines
975 B
C
32 lines
975 B
C
|
// Copyright (c) 2005,2007,2008,2009,2010,2011 Tel-Aviv University (Israel).
|
||
|
// All rights reserved.
|
||
|
//
|
||
|
// This file is part of CGAL (www.cgal.org).
|
||
|
//
|
||
|
// $URL: https://github.com/CGAL/cgal/blob/v5.1/Arrangement_on_surface_2/include/CGAL/Arr_vertex_map.h $
|
||
|
// $Id: Arr_vertex_map.h 0779373 2020-03-26T13:31:46+01:00 Sébastien Loriot
|
||
|
// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial
|
||
|
//
|
||
|
//
|
||
|
// Author(s) : Ron Wein <wein@post.tau.ac.il>
|
||
|
// Efi Fogel <efif@post.tau.ac.il>
|
||
|
|
||
|
#ifndef CGAL_ARR_VERTEX_MAP_H
|
||
|
#define CGAL_ARR_VERTEX_MAP_H
|
||
|
|
||
|
#include <CGAL/license/Arrangement_on_surface_2.h>
|
||
|
|
||
|
#define CGAL_DEPRECATED_HEADER "<CGAL/Arr_vertex_map.h>"
|
||
|
#define CGAL_REPLACEMENT_HEADER "<CGAL/Arr_vertex_index_map.h>"
|
||
|
#include <CGAL/internal/deprecation_warning.h>
|
||
|
|
||
|
#include <CGAL/Arr_vertex_index_map.h>
|
||
|
|
||
|
/*! \file
|
||
|
* Definition of the Arr_vertex_index_map<Arrangement> class.
|
||
|
*/
|
||
|
|
||
|
#include <CGAL/Arr_vertex_index_map.h>
|
||
|
|
||
|
#endif
|