This commit is contained in:
Maxime Gimeno 2018-10-30 14:15:01 +01:00
parent da4bb1f26a
commit cbf3e04fa6
9 changed files with 17 additions and 16 deletions

View File

@ -1,6 +1,6 @@
Release History
===============
Release 4.13
Release 4.14
------------
### IO Streams

View File

@ -53,7 +53,8 @@ namespace CGAL {
/// The class Polygon_2 implements polygons. The Polygon_2 is
/// parameterized by a traits class and a container class. The latter
/// can be any class that fulfills the requirements for an STL
/// container. It defaults to the std::vector class.
/// container, and has a function `resize()` that takes an std::size_t as argument
/// . It defaults to the std::vector class.
///
/// \cgalHeading{Implementation}
///

View File

@ -18,8 +18,8 @@
//
// Author(s) : Maxime Gimeno
#ifndef TRAITS_LINESTRING_H
#define TRAITS_LINESTRING_H
#ifndef CGAL_IO_TRAITS_LINESTRING_H
#define CGAL_IO_TRAITS_LINESTRING_H
#include <CGAL/internal/Geometry_container.h>

View File

@ -18,8 +18,8 @@
//
// Author(s) : Maxime Gimeno
#ifndef TRAITS_MULTILINESTRING_H
#define TRAITS_MULTILINESTRING_H
#ifndef CGAL_IO_TRAITS_MULTILINESTRING_H
#define CGAL_IO_TRAITS_MULTILINESTRING_H
#include <CGAL/internal/Geometry_container.h>

View File

@ -18,8 +18,8 @@
//
// Author(s) : Maxime Gimeno
#ifndef TRAITS_MULTIPOINT_H
#define TRAITS_MULTIPOINT_H
#ifndef CGAL_IO_TRAITS_MULTIPOINT_H
#define CGAL_IO_TRAITS_MULTIPOINT_H
#include <CGAL/internal/Geometry_container.h>
namespace boost{

View File

@ -18,8 +18,8 @@
//
// Author(s) : Maxime Gimeno
#ifndef CGAL_TRAITS_MULTIPOLYGON_H
#define CGAL_TRAITS_MULTIPOLYGON_H
#ifndef CGAL_IO_TRAITS_MULTIPOLYGON_H
#define CGAL_IO_TRAITS_MULTIPOLYGON_H
#include <CGAL/internal/Geometry_container.h>

View File

@ -18,8 +18,8 @@
//
// Author(s) : Maxime Gimeno
#ifndef CGAL_TRAITS_POINT_H
#define CGAL_TRAITS_POINT_H
#ifndef CGAL_IO_TRAITS_POINT_H
#define CGAL_IO_TRAITS_POINT_H
#include <CGAL/number_utils.h>
#include <CGAL/Point_2.h>

View File

@ -18,8 +18,8 @@
//
// Author(s) : Maxime Gimeno
#ifndef CGAL_TRAITS_POINT_3_H
#define CGAL_TRAITS_POINT_3_H
#ifndef CGAL_IO_TRAITS_POINT_3_H
#define CGAL_IO_TRAITS_POINT_3_H
#include <CGAL/number_utils.h>
#include <CGAL/Point_3.h>

View File

@ -18,8 +18,8 @@
//
// Author(s) : Maxime Gimeno
#ifndef CGAL_TRAITS_POLYGON_H
#define CGAL_TRAITS_POLYGON_H
#ifndef CGAL_IO_TRAITS_POLYGON_H
#define CGAL_IO_TRAITS_POLYGON_H
#include <CGAL/Polygon_2.h>
#include <CGAL/Polygon_with_holes_2.h>
#include <CGAL/Point_2.h>