mirror of https://github.com/CGAL/cgal
40 lines
839 B
C++
40 lines
839 B
C++
// Copyright (C) 2018 GeometryFactory Sarl
|
|
//
|
|
// This file is part of CGAL (www.cgal.org)
|
|
//
|
|
// $URL$
|
|
// $Id$
|
|
// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial
|
|
//
|
|
|
|
#ifndef CGAL_POLYHEDRON_3_FWD_H
|
|
#define CGAL_POLYHEDRON_3_FWD_H
|
|
|
|
#include <CGAL/memory.h>
|
|
|
|
/// \file Polyhedron_3_fwd.h
|
|
/// Forward declarations of the Polyhedron_3 package.
|
|
|
|
#ifndef DOXYGEN_RUNNING
|
|
namespace CGAL {
|
|
|
|
class Polyhedron_items_3;
|
|
|
|
template < class T, class I, class A>
|
|
class HalfedgeDS_default;
|
|
|
|
template < class PolyhedronTraits_3,
|
|
class PolyhedronItems_3 = Polyhedron_items_3,
|
|
template < class T, class I, class A>
|
|
class T_HDS = HalfedgeDS_default,
|
|
class Alloc = CGAL_ALLOCATOR(int)
|
|
>
|
|
class Polyhedron_3;
|
|
|
|
} // CGAL
|
|
#endif
|
|
|
|
#endif /* CGAL_POLYHEDRON_3_FWD_H */
|
|
|
|
|