Change license to LGPL for files that were moved from point set processing to STL_extension and Property_map

This commit is contained in:
Andreas Fabri 2016-03-09 17:04:07 +01:00
parent 324daa0b78
commit d12e511097
6 changed files with 19 additions and 21 deletions

View File

@ -13,7 +13,7 @@
\cgalPkgShortInfoBegin
\cgalPkgSince{3.5}
\cgalPkgBib{cgal:fs-cbpm}
\cgalPkgLicense{\ref licensesGPL "GPL"}
\cgalPkgLicense{\ref licensesGPL "LGPL"}
\cgalPkgShortInfoEnd
\cgalPkgDescriptionEnd

View File

@ -1,10 +1,10 @@
// Copyright (c) 20009 INRIA Sophia-Antipolis (France).
// All rights reserved.
//
// This file is part of CGAL (www.cgal.org).
// You can redistribute it and/or modify it under the terms of the GNU
// General Public License as published by the Free Software Foundation,
// either version 3 of the License, or (at your option) any later version.
// This file is part of CGAL (www.cgal.org); you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public License as
// published by the Free Software Foundation; either version 3 of the License,
// or (at your option) any later version.
//
// Licensees holding a valid commercial license may use this file in
// accordance with the commercial license agreement provided with the software.
@ -20,8 +20,6 @@
#ifndef CGAL_INDEX_PROPERTY_MAP_H
#define CGAL_INDEX_PROPERTY_MAP_H
#include <CGAL/point_set_processing_assertions.h>
#include <CGAL/trace.h>
#include <CGAL/property_map.h>
#include <boost/shared_ptr.hpp>
@ -95,8 +93,6 @@ public:
: m_index_map(new Index_map) // Allocate std::map
{
CGAL_TRACE(" Index_property_map: index elements in temporary std::map\n");
// Index elements in std::map
Iter it;
unsigned int index;
@ -129,9 +125,7 @@ public:
Iter first, ///< iterator over the first element (index 0)
Iter /*beyond*/) ///< past-the-end iterator over the elements
: m_first(first)
{
CGAL_TRACE(" Index_property_map: optimized version for a random access container\n");
}
{}
/// Free function to access the map elements.
friend inline

View File

@ -1,10 +1,10 @@
// Copyright (c) 2008-2009 GeometryFactory and INRIA
// All rights reserved.
//
// This file is part of CGAL (www.cgal.org).
// You can redistribute it and/or modify it under the terms of the GNU
// General Public License as published by the Free Software Foundation,
// either version 3 of the License, or (at your option) any later version.
// This file is part of CGAL (www.cgal.org); you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public License as
// published by the Free Software Foundation; either version 3 of the License,
// or (at your option) any later version.
//
// Licensees holding a valid commercial license may use this file in
// accordance with the commercial license agreement provided with the software.

View File

@ -1,3 +1,5 @@
@INCLUDE = ${CGAL_DOC_PACKAGE_DEFAULTS}
PROJECT_NAME = "CGAL ${CGAL_DOC_VERSION} - STL Extensions for CGAL"
INPUT += ${CGAL_PACKAGE_INCLUDE_DIR}/CGAL/value_type_traits.h

View File

@ -116,6 +116,7 @@
- `CGAL::Location_policy<Tag>`
- `CGAL::Fast_location`
- `CGAL::Compact_location`
- `CGAL::value_type_traits<T>`
*/

View File

@ -1,10 +1,11 @@
// Copyright (c) 2007-09 INRIA Sophia-Antipolis (France).
// All rights reserved.
//
// This file is part of CGAL (www.cgal.org).
// You can redistribute it and/or modify it under the terms of the GNU
// General Public License as published by the Free Software Foundation,
// either version 3 of the License, or (at your option) any later version.
//
// This file is part of CGAL (www.cgal.org); you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public License as
// published by the Free Software Foundation; either version 3 of the License,
// or (at your option) any later version.
//
// Licensees holding a valid commercial license may use this file in
// accordance with the commercial license agreement provided with the software.
@ -24,7 +25,7 @@
namespace CGAL {
/// \ingroup PkgPointSetProcessing
/// \ingroup PkgStlExtension
/// Class providing the value type of an iterator, and
/// in the case of an output iterator, a type of objects that can be put in it.
///