Files
cgal/Surface_mesh/include/CGAL/Surface_mesh.h
T
Laurent Rineau 2f4e49bfff Fix forward-declarations of CGAL::Surface_mesh
In the forward-declaration, the template parameters do not matter, but
they do if the code is read by an IDE (with IntelliSense for example).
2020-03-23 09:47:01 +01:00

31 lines
626 B
C++

// Copyright (c) 2014 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) : Phlipp Moeller
#ifndef CGAL_TOP_LEVEL_SURFACE_MESH_H
#define CGAL_TOP_LEVEL_SURFACE_MESH_H
#include <CGAL/license/Surface_mesh.h>
#include <CGAL/Surface_mesh/Surface_mesh_fwd.h>
#include <CGAL/Surface_mesh/Surface_mesh.h>
#ifdef DOXYGEN_RUNNING
namespace CGAL {
// fwdS for the public interface
template<typename P>
class Surface_mesh;
}
#endif
#endif /* CGAL_TOP_LEVEL_SURFACE_MESH_H */