mirror of https://github.com/CGAL/cgal
25 lines
532 B
C++
25 lines
532 B
C++
// 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_H
|
|
#define CGAL_BOOST_GRAPH_HALFEDGE_GRAPH_TRAITS_H
|
|
|
|
#include <CGAL/basic.h>
|
|
|
|
namespace CGAL {
|
|
|
|
template<class T> struct halfedge_graph_traits ;
|
|
|
|
} //namespace CGAL
|
|
|
|
#endif // CGAL_BOOST_GRAPH_HALFEDGE_GRAPH_TRAITS_H
|