45 lines
1.1 KiB
C++
45 lines
1.1 KiB
C++
// Copyright (c) 2003 INRIA Sophia-Antipolis (France).
|
|
// All rights reserved.
|
|
//
|
|
// This file is part of CGAL (www.cgal.org).
|
|
//
|
|
// $URL: https://github.com/CGAL/cgal/blob/v5.1/TDS_3/include/CGAL/internal/Dummy_tds_3.h $
|
|
// $Id: Dummy_tds_3.h 254d60f 2019-10-19T15:23:19+02:00 Sébastien Loriot
|
|
// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial
|
|
//
|
|
//
|
|
// Author(s) : Sylvain Pion
|
|
|
|
#ifndef CGAL_INTERNAL_TRIANGULATION_DUMMY_TDS_3_H
|
|
#define CGAL_INTERNAL_TRIANGULATION_DUMMY_TDS_3_H
|
|
|
|
#include <CGAL/license/TDS_3.h>
|
|
|
|
|
|
namespace CGAL { namespace internal {
|
|
|
|
// Dummy TDS which provides all types that a vertex_base or cell_base can use.
|
|
struct Dummy_tds_3 {
|
|
struct Concurrency_tag {};
|
|
|
|
struct Vertex {};
|
|
struct Cell {};
|
|
struct Facet {};
|
|
struct Edge {};
|
|
|
|
struct Vertex_handle {};
|
|
struct Cell_handle {};
|
|
|
|
struct Vertex_iterator {};
|
|
struct Cell_iterator {};
|
|
struct Facet_iterator {};
|
|
struct Edge_iterator {};
|
|
|
|
struct Cell_circulator {};
|
|
struct Facet_circulator {};
|
|
};
|
|
|
|
}} // namespace CGAL::internal
|
|
|
|
#endif // CGAL_INTERNAL_TRIANGULATION_DUMMY_TDS_3_H
|