Skip to content

Commit

Permalink
Move header to internal
Browse files Browse the repository at this point in the history
  • Loading branch information
afabri committed Dec 27, 2024
1 parent 85c7348 commit 315668b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@
#include <CGAL/Frechet_distance/internal/curve.h>
#include <CGAL/Frechet_distance/internal/frechet_light.h>
#include <CGAL/Frechet_distance/internal/geometry_basics.h>
#include <CGAL/Frechet_distance/internal/Frechet_distance_traits.h>
#include <CGAL/STL_Extension/internal/Has_nested_type_Has_filtered_predicates_tag.h>
#include <CGAL/Frechet_distance_traits_2.h>
#include <CGAL/Frechet_distance_traits_3.h>
#include <CGAL/Frechet_distance_traits_d.h>
#include <CGAL/Frechet_distance_traits.h>
#include <CGAL/Simple_cartesian.h>
#include <CGAL/Exact_rational.h>
#include <CGAL/Interval_nt.h>
Expand Down Expand Up @@ -74,8 +74,8 @@ auto toCurve(const PointRange& point_range, const Traits& traits)
}
else
{
using AT = Frechet_distance_traits<CGAL::Interval_nt_advanced, Traits::Dimension::value>;
using ET = Frechet_distance_traits<CGAL::Exact_rational, Traits::Dimension::value>;
using AT = Frechet_distance_::internal::Frechet_distance_traits<CGAL::Interval_nt_advanced, Traits::Dimension::value>;
using ET = Frechet_distance_::internal::Frechet_distance_traits<CGAL::Exact_rational, Traits::Dimension::value>;
using Filtered_traits = std::pair<AT,ET>;

return Curve<Filtered_traits, true>(point_range, traits);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@
// Andreas Fabri
// =============================================================================

#ifndef CGAL_FRECHET_DISTANCE_TRAITS_H
#define CGAL_FRECHET_DISTANCE_TRAITS_H
#pragma once

#include <CGAL/license/Frechet_distance.h>

#include <CGAL/Bbox.h>
#include <array>

namespace CGAL
{
namespace CGAL {
namespace Frechet_distance_ {
namespace internal {

template <class NT, int dimension>
class Frechet_distance_traits
Expand Down Expand Up @@ -69,6 +69,6 @@ class Frechet_distance_traits
}
};

}
}
} // end of namespace CGAL

#endif // CGAL_FRECHET_DISTANCE_TRAITS_H

0 comments on commit 315668b

Please sign in to comment.