Skip to content

Commit

Permalink
Fix include. Use " instead of <>
Browse files Browse the repository at this point in the history
  • Loading branch information
lbartoletti committed Feb 28, 2024
1 parent 324aba1 commit 2b2840a
Show file tree
Hide file tree
Showing 285 changed files with 1,853 additions and 1,853 deletions.
10 changes: 5 additions & 5 deletions example/SFCGAL-building/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@

#include <boost/lexical_cast.hpp>

#include <SFCGAL/GeometryCollection.h>
#include <SFCGAL/Exception.h>
#include <SFCGAL/io/wkt.h>
#include <SFCGAL/detail/generator/building.h>
#include "SFCGAL/GeometryCollection.h"
#include "SFCGAL/Exception.h"
#include "SFCGAL/io/wkt.h"
#include "SFCGAL/detail/generator/building.h"

// optional osg support for outputs
#include <SFCGAL/io/osg.h>
#include "SFCGAL/io/osg.h"

using namespace SFCGAL ;

Expand Down
12 changes: 6 additions & 6 deletions example/SFCGAL-export-osg/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@
*/
#include <iostream>

#include <SFCGAL/io/wkt.h>
#include "SFCGAL/io/wkt.h"

#include <SFCGAL/MultiPolygon.h>
#include <SFCGAL/algorithm/translate.h>
#include <SFCGAL/algorithm/offset.h>
#include <SFCGAL/algorithm/extrude.h>
#include "SFCGAL/MultiPolygon.h"
#include "SFCGAL/algorithm/translate.h"
#include "SFCGAL/algorithm/offset.h"
#include "SFCGAL/algorithm/extrude.h"

#include <SFCGAL/detail/io/OsgFactory.h>
#include "SFCGAL/detail/io/OsgFactory.h"



Expand Down
6 changes: 3 additions & 3 deletions example/SFCGAL-offset/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
*/
#include <SFCGAL/MultiPolygon.h>
#include "SFCGAL/MultiPolygon.h"

#include <SFCGAL/io/wkt.h>
#include <SFCGAL/algorithm/offset.h>
#include "SFCGAL/io/wkt.h"
#include "SFCGAL/algorithm/offset.h"

using namespace SFCGAL ;

Expand Down
8 changes: 4 additions & 4 deletions src/Coordinate.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
// Copyright (c) 2012-2022, Oslandia.
// SPDX-License-Identifier: LGPL-2.0-or-later

#include <SFCGAL/Coordinate.h>
#include "SFCGAL/Coordinate.h"

#include <SFCGAL/Exception.h>
#include <SFCGAL/Kernel.h>
#include <SFCGAL/numeric.h>
#include "SFCGAL/Exception.h"
#include "SFCGAL/Kernel.h"
#include "SFCGAL/numeric.h"

namespace SFCGAL {

Expand Down
6 changes: 3 additions & 3 deletions src/Coordinate.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@
#ifndef _SFCGAL_COORDINATE_H_
#define _SFCGAL_COORDINATE_H_

#include <SFCGAL/config.h>
#include "SFCGAL/config.h"

#include <boost/array.hpp>
#include <boost/assert.hpp>
#include <boost/serialization/split_member.hpp>
#include <boost/variant.hpp>

#include <SFCGAL/numeric.h>
#include "SFCGAL/numeric.h"

#include <SFCGAL/Kernel.h>
#include "SFCGAL/Kernel.h"

namespace SFCGAL {

Expand Down
10 changes: 5 additions & 5 deletions src/Envelope.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
// Copyright (c) 2012-2022, Oslandia.
// SPDX-License-Identifier: LGPL-2.0-or-later

#include <SFCGAL/Envelope.h>
#include <SFCGAL/LineString.h>
#include <SFCGAL/Polygon.h>
#include <SFCGAL/PolyhedralSurface.h>
#include <SFCGAL/Solid.h>
#include "SFCGAL/Envelope.h"
#include "SFCGAL/LineString.h"
#include "SFCGAL/Polygon.h"
#include "SFCGAL/PolyhedralSurface.h"
#include "SFCGAL/Solid.h"

#include <memory>

Expand Down
6 changes: 3 additions & 3 deletions src/Envelope.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
#include <CGAL/Bbox_2.h>
#include <CGAL/Bbox_3.h>

#include <SFCGAL/config.h>
#include "SFCGAL/config.h"

#include <SFCGAL/Coordinate.h>
#include <SFCGAL/detail/Interval.h>
#include "SFCGAL/Coordinate.h"
#include "SFCGAL/detail/Interval.h"

namespace SFCGAL {

Expand Down
2 changes: 1 addition & 1 deletion src/Exception.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Copyright (c) 2012-2022, Oslandia.
// SPDX-License-Identifier: LGPL-2.0-or-later

#include <SFCGAL/Exception.h>
#include "SFCGAL/Exception.h"

namespace SFCGAL {

Expand Down
2 changes: 1 addition & 1 deletion src/Exception.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#ifndef _IGN_EXCEPTION_H_
#define _IGN_EXCEPTION_H_

#include <SFCGAL/config.h>
#include "SFCGAL/config.h"

#include <string>

Expand Down
24 changes: 12 additions & 12 deletions src/Geometry.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,23 @@
// Copyright (c) 2012-2022, Oslandia.
// SPDX-License-Identifier: LGPL-2.0-or-later

#include <SFCGAL/Geometry.h>
#include "SFCGAL/Geometry.h"

#include <SFCGAL/GeometryVisitor.h>
#include <SFCGAL/Point.h>
#include <SFCGAL/detail/GetPointsVisitor.h>
#include <SFCGAL/detail/io/WkbWriter.h>
#include <SFCGAL/detail/io/WktWriter.h>
#include "SFCGAL/GeometryVisitor.h"
#include "SFCGAL/Point.h"
#include "SFCGAL/detail/GetPointsVisitor.h"
#include "SFCGAL/detail/io/WkbWriter.h"
#include "SFCGAL/detail/io/WktWriter.h"

#include <SFCGAL/algorithm/BoundaryVisitor.h>
#include <SFCGAL/algorithm/distance.h>
#include <SFCGAL/algorithm/distance3d.h>
#include "SFCGAL/algorithm/BoundaryVisitor.h"
#include "SFCGAL/algorithm/distance.h"
#include "SFCGAL/algorithm/distance3d.h"

#include <SFCGAL/detail/EnvelopeVisitor.h>
#include "SFCGAL/detail/EnvelopeVisitor.h"

#include <SFCGAL/detail/transform/RoundTransform.h>
#include "SFCGAL/detail/transform/RoundTransform.h"

#include <SFCGAL/Kernel.h>
#include "SFCGAL/Kernel.h"

namespace SFCGAL {

Expand Down
2 changes: 1 addition & 1 deletion src/Geometry.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#ifndef _SFCGAL_GEOMETRY_H_
#define _SFCGAL_GEOMETRY_H_

#include <SFCGAL/config.h>
#include "SFCGAL/config.h"

#include <boost/endian/conversion.hpp>
#include <boost/shared_ptr.hpp>
Expand Down
6 changes: 3 additions & 3 deletions src/GeometryCollection.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
// Copyright (c) 2012-2022, Oslandia.
// SPDX-License-Identifier: LGPL-2.0-or-later

#include <SFCGAL/GeometryCollection.h>
#include <SFCGAL/GeometryVisitor.h>
#include "SFCGAL/GeometryCollection.h"
#include "SFCGAL/GeometryVisitor.h"

#include <SFCGAL/Exception.h>
#include "SFCGAL/Exception.h"

namespace SFCGAL {

Expand Down
2 changes: 1 addition & 1 deletion src/GeometryCollection.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#include <boost/serialization/base_object.hpp>
#include <vector>

#include <SFCGAL/Geometry.h>
#include "SFCGAL/Geometry.h"

namespace SFCGAL {

Expand Down
26 changes: 13 additions & 13 deletions src/GeometryVisitor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,20 @@
// Copyright (c) 2012-2022, Oslandia.
// SPDX-License-Identifier: LGPL-2.0-or-later

#include <SFCGAL/GeometryVisitor.h>
#include "SFCGAL/GeometryVisitor.h"

#include <SFCGAL/GeometryCollection.h>
#include <SFCGAL/LineString.h>
#include <SFCGAL/MultiLineString.h>
#include <SFCGAL/MultiPoint.h>
#include <SFCGAL/MultiPolygon.h>
#include <SFCGAL/MultiSolid.h>
#include <SFCGAL/Point.h>
#include <SFCGAL/Polygon.h>
#include <SFCGAL/PolyhedralSurface.h>
#include <SFCGAL/Solid.h>
#include <SFCGAL/Triangle.h>
#include <SFCGAL/TriangulatedSurface.h>
#include "SFCGAL/GeometryCollection.h"
#include "SFCGAL/LineString.h"
#include "SFCGAL/MultiLineString.h"
#include "SFCGAL/MultiPoint.h"
#include "SFCGAL/MultiPolygon.h"
#include "SFCGAL/MultiSolid.h"
#include "SFCGAL/Point.h"
#include "SFCGAL/Polygon.h"
#include "SFCGAL/PolyhedralSurface.h"
#include "SFCGAL/Solid.h"
#include "SFCGAL/Triangle.h"
#include "SFCGAL/TriangulatedSurface.h"

namespace SFCGAL {

Expand Down
2 changes: 1 addition & 1 deletion src/GeometryVisitor.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#ifndef _SFCGAL_GEOMETRYVISITOR_H_
#define _SFCGAL_GEOMETRYVISITOR_H_

#include <SFCGAL/Geometry.h>
#include "SFCGAL/Geometry.h"

namespace SFCGAL {

Expand Down
4 changes: 2 additions & 2 deletions src/LineString.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
// Copyright (c) 2012-2022, Oslandia.
// SPDX-License-Identifier: LGPL-2.0-or-later

#include <SFCGAL/GeometryVisitor.h>
#include <SFCGAL/LineString.h>
#include "SFCGAL/GeometryVisitor.h"
#include "SFCGAL/LineString.h"

namespace SFCGAL {

Expand Down
2 changes: 1 addition & 1 deletion src/LineString.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#include <boost/ptr_container/serialize_ptr_vector.hpp>
#include <boost/serialization/base_object.hpp>

#include <SFCGAL/Point.h>
#include "SFCGAL/Point.h"

#include <CGAL/Polygon_2.h>

Expand Down
4 changes: 2 additions & 2 deletions src/MultiLineString.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
// Copyright (c) 2012-2022, Oslandia.
// SPDX-License-Identifier: LGPL-2.0-or-later

#include <SFCGAL/GeometryVisitor.h>
#include <SFCGAL/MultiLineString.h>
#include "SFCGAL/GeometryVisitor.h"
#include "SFCGAL/MultiLineString.h"

namespace SFCGAL {

Expand Down
4 changes: 2 additions & 2 deletions src/MultiLineString.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@

#include <boost/serialization/base_object.hpp>

#include <SFCGAL/GeometryCollection.h>
#include <SFCGAL/LineString.h>
#include "SFCGAL/GeometryCollection.h"
#include "SFCGAL/LineString.h"

namespace SFCGAL {

Expand Down
4 changes: 2 additions & 2 deletions src/MultiPoint.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
// Copyright (c) 2012-2022, Oslandia.
// SPDX-License-Identifier: LGPL-2.0-or-later

#include <SFCGAL/GeometryVisitor.h>
#include <SFCGAL/MultiPoint.h>
#include "SFCGAL/GeometryVisitor.h"
#include "SFCGAL/MultiPoint.h"

namespace SFCGAL {

Expand Down
4 changes: 2 additions & 2 deletions src/MultiPoint.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@

#include <boost/serialization/base_object.hpp>

#include <SFCGAL/GeometryCollection.h>
#include <SFCGAL/Point.h>
#include "SFCGAL/GeometryCollection.h"
#include "SFCGAL/Point.h"

namespace SFCGAL {

Expand Down
4 changes: 2 additions & 2 deletions src/MultiPolygon.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
// Copyright (c) 2012-2022, Oslandia.
// SPDX-License-Identifier: LGPL-2.0-or-later

#include <SFCGAL/GeometryVisitor.h>
#include <SFCGAL/MultiPolygon.h>
#include "SFCGAL/GeometryVisitor.h"
#include "SFCGAL/MultiPolygon.h"

namespace SFCGAL {

Expand Down
4 changes: 2 additions & 2 deletions src/MultiPolygon.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@

#include <boost/serialization/base_object.hpp>

#include <SFCGAL/GeometryCollection.h>
#include <SFCGAL/Polygon.h>
#include "SFCGAL/GeometryCollection.h"
#include "SFCGAL/Polygon.h"

namespace SFCGAL {

Expand Down
4 changes: 2 additions & 2 deletions src/MultiSolid.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
// Copyright (c) 2012-2022, Oslandia.
// SPDX-License-Identifier: LGPL-2.0-or-later

#include <SFCGAL/GeometryVisitor.h>
#include <SFCGAL/MultiSolid.h>
#include "SFCGAL/GeometryVisitor.h"
#include "SFCGAL/MultiSolid.h"

namespace SFCGAL {

Expand Down
4 changes: 2 additions & 2 deletions src/MultiSolid.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@

#include <boost/serialization/base_object.hpp>

#include <SFCGAL/GeometryCollection.h>
#include <SFCGAL/Solid.h>
#include "SFCGAL/GeometryCollection.h"
#include "SFCGAL/Solid.h"

namespace SFCGAL {

Expand Down
6 changes: 3 additions & 3 deletions src/Point.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
// Copyright (c) 2012-2022, Oslandia.
// SPDX-License-Identifier: LGPL-2.0-or-later

#include <SFCGAL/GeometryVisitor.h>
#include <SFCGAL/Point.h>
#include "SFCGAL/GeometryVisitor.h"
#include "SFCGAL/Point.h"

#include <SFCGAL/Exception.h>
#include "SFCGAL/Exception.h"

using namespace SFCGAL::detail;

Expand Down
6 changes: 3 additions & 3 deletions src/Point.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
#ifndef _SFCGAL_POINT_H_
#define _SFCGAL_POINT_H_

#include <SFCGAL/Coordinate.h>
#include "SFCGAL/Coordinate.h"

#include <SFCGAL/Geometry.h>
#include <SFCGAL/detail/TypeForDimension.h>
#include "SFCGAL/Geometry.h"
#include "SFCGAL/detail/TypeForDimension.h"

#include <boost/serialization/base_object.hpp>

Expand Down
Loading

0 comments on commit 2b2840a

Please sign in to comment.