mirror of https://github.com/CGAL/cgal
25 lines
667 B
C++
25 lines
667 B
C++
// Copyright (c) 2019 GeometryFactory (France). All rights reserved.
|
|
//
|
|
// This file is part of CGAL (www.cgal.org)
|
|
//
|
|
// $URL$
|
|
// $Id$
|
|
// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial
|
|
//
|
|
// Author(s) : Mael Rouxel-Labbé
|
|
|
|
#ifndef CGAL_PROPERTIES_TRIANGULATION_2_H
|
|
#define CGAL_PROPERTIES_TRIANGULATION_2_H
|
|
|
|
#include <CGAL/license/Triangulation_2.h>
|
|
|
|
|
|
#include <CGAL/Triangulation_2.h>
|
|
|
|
#define CGAL_2D_TRIANGULATION_TEMPLATE_PARAMETERS typename GT, typename TDS
|
|
#define CGAL_2D_TRIANGULATION CGAL::Triangulation_2<GT, TDS>
|
|
|
|
#include <CGAL/boost/graph/internal/properties_2D_triangulation.h>
|
|
|
|
#endif /* CGAL_PROPERTIES_TRIANGULATION_2_H */
|