mirror of https://github.com/CGAL/cgal
add new license header
This commit is contained in:
parent
ff3c63d596
commit
37fe3d8778
|
|
@ -0,0 +1,54 @@
|
|||
// Copyright (c) 2016 GeometryFactory SARL (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
|
||||
//
|
||||
// Warning: this file is generated, see include/CGAL/licence/README.md
|
||||
|
||||
#ifndef CGAL_LICENSE_ISOSURFACING_3_H
|
||||
#define CGAL_LICENSE_ISOSURFACING_3_H
|
||||
|
||||
#include <CGAL/config.h>
|
||||
#include <CGAL/license.h>
|
||||
|
||||
#ifdef CGAL_ISOSURFACING_3_COMMERCIAL_LICENSE
|
||||
|
||||
# if CGAL_ISOSURFACING_3_COMMERCIAL_LICENSE < CGAL_RELEASE_DATE
|
||||
|
||||
# if defined(CGAL_LICENSE_WARNING)
|
||||
|
||||
CGAL_pragma_warning("Your commercial license for CGAL does not cover "
|
||||
"this release of the 3D Isosurfacing package.")
|
||||
# endif
|
||||
|
||||
# ifdef CGAL_LICENSE_ERROR
|
||||
# error "Your commercial license for CGAL does not cover this release \
|
||||
of the 3D Isosurfacing package. \
|
||||
You get this error, as you defined CGAL_LICENSE_ERROR."
|
||||
# endif // CGAL_LICENSE_ERROR
|
||||
|
||||
# endif // CGAL_ISOSURFACING_3_COMMERCIAL_LICENSE < CGAL_RELEASE_DATE
|
||||
|
||||
#else // no CGAL_ISOSURFACING_3_COMMERCIAL_LICENSE
|
||||
|
||||
# if defined(CGAL_LICENSE_WARNING)
|
||||
CGAL_pragma_warning("\nThe macro CGAL_ISOSURFACING_3_COMMERCIAL_LICENSE is not defined."
|
||||
"\nYou use the CGAL 3D Isosurfacing package under "
|
||||
"the terms of the GPLv3+.")
|
||||
# endif // CGAL_LICENSE_WARNING
|
||||
|
||||
# ifdef CGAL_LICENSE_ERROR
|
||||
# error "The macro CGAL_ISOSURFACING_3_COMMERCIAL_LICENSE is not defined.\
|
||||
You use the CGAL 3D Isosurfacing package under the terms of \
|
||||
the GPLv3+. You get this error, as you defined CGAL_LICENSE_ERROR."
|
||||
# endif // CGAL_LICENSE_ERROR
|
||||
|
||||
#endif // no CGAL_ISOSURFACING_3_COMMERCIAL_LICENSE
|
||||
|
||||
#endif // CGAL_LICENSE_ISOSURFACING_3_H
|
||||
|
|
@ -24,12 +24,12 @@
|
|||
# if defined(CGAL_LICENSE_WARNING)
|
||||
|
||||
CGAL_pragma_warning("Your commercial license for CGAL does not cover "
|
||||
"this release of the 3D Mesh Data Structure package.")
|
||||
"this release of the 3D Simplicial Mesh Data Structure package.")
|
||||
# endif
|
||||
|
||||
# ifdef CGAL_LICENSE_ERROR
|
||||
# error "Your commercial license for CGAL does not cover this release \
|
||||
of the 3D Mesh Data Structure package. \
|
||||
of the 3D Simplicial Mesh Data Structure package. \
|
||||
You get this error, as you defined CGAL_LICENSE_ERROR."
|
||||
# endif // CGAL_LICENSE_ERROR
|
||||
|
||||
|
|
|
|||
|
|
@ -24,6 +24,7 @@ Hyperbolic_triangulation_2 2D Hyperbolic Delaunay Triangulations
|
|||
Inscribed_areas Inscribed Areas
|
||||
Interpolation 2D and Surface Function Interpolation
|
||||
Interval_skip_list Interval Skip List
|
||||
Isosurfacing_3 3D Isosurfacing
|
||||
Jet_fitting_3 Estimation of Local Differential Properties of Point-Sampled Surfaces
|
||||
Matrix_search Monotone and Sorted Matrix Search
|
||||
Mesh_2 2D Conforming Triangulations and Meshes
|
||||
|
|
|
|||
|
|
@ -12,6 +12,7 @@
|
|||
#ifndef CGAL_CARTESIAN_GRID_3_H
|
||||
#define CGAL_CARTESIAN_GRID_3_H
|
||||
|
||||
#include <CGAL/license/Isosurfacing_3.h>
|
||||
#include <CGAL/Bbox_3.h>
|
||||
#include <CGAL/Image_3.h>
|
||||
|
||||
|
|
|
|||
|
|
@ -12,6 +12,7 @@
|
|||
#ifndef CGAL_CARTESIAN_GRID_DOMAIN_H
|
||||
#define CGAL_CARTESIAN_GRID_DOMAIN_H
|
||||
|
||||
#include <CGAL/license/Isosurfacing_3.h>
|
||||
#include <CGAL/Cartesian_grid_3.h>
|
||||
#include <CGAL/Cartesian_topology_base.h>
|
||||
#include <CGAL/Default_gradients.h>
|
||||
|
|
|
|||
|
|
@ -12,6 +12,7 @@
|
|||
#ifndef CGAL_CARTESIAN_TOPOLOGY_BASE_H
|
||||
#define CGAL_CARTESIAN_TOPOLOGY_BASE_H
|
||||
|
||||
#include <CGAL/license/Isosurfacing_3.h>
|
||||
#include <CGAL/Cell_type.h>
|
||||
#include <CGAL/Isosurfacing_3/internal/Tables.h>
|
||||
#include <CGAL/tags.h>
|
||||
|
|
|
|||
|
|
@ -12,6 +12,7 @@
|
|||
#ifndef CGAL_DOMAIN_CELL_TYPE
|
||||
#define CGAL_DOMAIN_CELL_TYPE
|
||||
|
||||
#include <CGAL/license/Isosurfacing_3.h>
|
||||
#include <limits>
|
||||
|
||||
namespace CGAL {
|
||||
|
|
|
|||
|
|
@ -12,6 +12,8 @@
|
|||
#ifndef CGAL_DEFAULT_GRADIENT_H
|
||||
#define CGAL_DEFAULT_GRADIENT_H
|
||||
|
||||
#include <CGAL/license/Isosurfacing_3.h>
|
||||
|
||||
namespace CGAL {
|
||||
namespace Isosurfacing {
|
||||
|
||||
|
|
|
|||
|
|
@ -13,6 +13,7 @@
|
|||
#ifndef CGAL_DUAL_CONTOURING_3_H
|
||||
#define CGAL_DUAL_CONTOURING_3_H
|
||||
|
||||
#include <CGAL/license/Isosurfacing_3.h>
|
||||
#include <CGAL/Cell_type.h>
|
||||
#include <CGAL/Isosurfacing_3/internal/Dual_contouring_internal.h>
|
||||
#include <CGAL/tags.h>
|
||||
|
|
|
|||
|
|
@ -12,6 +12,7 @@
|
|||
#ifndef CGAL_IMPLICIT_DOMAIN_H
|
||||
#define CGAL_IMPLICIT_DOMAIN_H
|
||||
|
||||
#include <CGAL/license/Isosurfacing_3.h>
|
||||
#include <CGAL/Bbox_3.h>
|
||||
#include <CGAL/Cartesian_topology_base.h>
|
||||
#include <CGAL/Default_gradients.h>
|
||||
|
|
|
|||
|
|
@ -13,6 +13,7 @@
|
|||
#ifndef CGAL_DUAL_CONTOURING_3_INTERNAL_DUAL_CONTOURING_3_H
|
||||
#define CGAL_DUAL_CONTOURING_3_INTERNAL_DUAL_CONTOURING_3_H
|
||||
|
||||
#include <CGAL/license/Isosurfacing_3.h>
|
||||
#include <CGAL/Bbox_3.h>
|
||||
#include <CGAL/Isosurfacing_3/internal/Tables.h>
|
||||
#include <CGAL/Origin.h>
|
||||
|
|
|
|||
|
|
@ -41,6 +41,7 @@
|
|||
#ifndef CGAL_MARCHING_CUBES_3_INTERNAL_MARCHING_CUBES_3_H
|
||||
#define CGAL_MARCHING_CUBES_3_INTERNAL_MARCHING_CUBES_3_H
|
||||
|
||||
#include <CGAL/license/Isosurfacing_3.h>
|
||||
#include <CGAL/Isosurfacing_3/internal/Tables.h>
|
||||
#include <tbb/concurrent_vector.h>
|
||||
|
||||
|
|
|
|||
|
|
@ -41,6 +41,8 @@
|
|||
#ifndef CGAL_MARCHING_CUBES_3_INTERNAL_TABLES_H
|
||||
#define CGAL_MARCHING_CUBES_3_INTERNAL_TABLES_H
|
||||
|
||||
#include <CGAL/license/Isosurfacing_3.h>
|
||||
|
||||
namespace CGAL {
|
||||
namespace Isosurfacing {
|
||||
namespace internal {
|
||||
|
|
|
|||
|
|
@ -41,6 +41,7 @@
|
|||
#ifndef CGAL_TMC_INTERNAL_TMC_H
|
||||
#define CGAL_TMC_INTERNAL_TMC_H
|
||||
|
||||
#include <CGAL/license/Isosurfacing_3.h>
|
||||
#include <CGAL/Isosurfacing_3/internal/Marching_cubes_3_internal.h>
|
||||
#include <CGAL/Isosurfacing_3/internal/Tables.h>
|
||||
|
||||
|
|
|
|||
|
|
@ -12,6 +12,7 @@
|
|||
#ifndef CGAL_MARCHING_CUBES_3_H
|
||||
#define CGAL_MARCHING_CUBES_3_H
|
||||
|
||||
#include <CGAL/license/Isosurfacing_3.h>
|
||||
#include <CGAL/Cell_type.h>
|
||||
#include <CGAL/Isosurfacing_3/internal/Marching_cubes_3_internal.h>
|
||||
#include <CGAL/tags.h>
|
||||
|
|
|
|||
|
|
@ -12,6 +12,7 @@
|
|||
#ifndef CGAL_OCTREE_DOMAIN_H
|
||||
#define CGAL_OCTREE_DOMAIN_H
|
||||
|
||||
#include <CGAL/license/Isosurfacing_3.h>
|
||||
#include <CGAL/Cell_type.h>
|
||||
#include <CGAL/Default_gradients.h>
|
||||
#include <CGAL/Octree_wrapper.h>
|
||||
|
|
|
|||
|
|
@ -10,8 +10,10 @@
|
|||
// Author(s) : Daniel Zint
|
||||
// Julian Stahl
|
||||
|
||||
#pragma once
|
||||
#ifndef CGAL_OCTREE_WRAPPER_H
|
||||
#define CGAL_OCTREE_WRAPPER_H
|
||||
|
||||
#include <CGAL/license/Isosurfacing_3.h>
|
||||
#include <CGAL/Isosurfacing_3/internal/Tables.h>
|
||||
#include <CGAL/Octree.h>
|
||||
#include <CGAL/Orthtree/Traversals.h>
|
||||
|
|
@ -522,3 +524,5 @@ public:
|
|||
|
||||
} // namespace Isosurfacing
|
||||
} // namespace CGAL
|
||||
|
||||
#endif // CGAL_OCTREE_WRAPPER_H
|
||||
|
|
|
|||
|
|
@ -12,6 +12,7 @@
|
|||
#ifndef CGAL_TMC_3_H
|
||||
#define CGAL_TMC_3_H
|
||||
|
||||
#include <CGAL/license/Isosurfacing_3.h>
|
||||
#include <CGAL/Cell_type.h>
|
||||
#include <CGAL/Isosurfacing_3/internal/Tmc_internal.h>
|
||||
#include <CGAL/tags.h>
|
||||
|
|
|
|||
Loading…
Reference in New Issue