Reorganize internal directory structure.

This commit is contained in:
Thijs van Lankveld 2014-04-04 15:09:04 +02:00
parent 2841f9d286
commit 1729e9b098
4 changed files with 4 additions and 9 deletions

View File

@ -20,7 +20,7 @@
#ifndef CGAL_INTERNAL_SHAPE_TYPE_H
#define CGAL_INTERNAL_SHAPE_TYPE_H
#include <CGAL/internal/Auto_count.h>
#include <CGAL/Scale_space_reconstruction_3/internal/Auto_count.h>
#include <CGAL/Delaunay_triangulation_3.h>
#include <CGAL/Triangulation_vertex_base_with_info_3.h>
@ -37,8 +37,6 @@
namespace CGAL {
namespace internal {
/// The standard type for the shape of a set of points.
/** \tparam Kernel the geometric traits class. It should be a model of
* DelaunayTriangulationTraits_3.
@ -152,8 +150,6 @@ public:
}
}; // class Shape_type
} // namespace internal
} // namespace CGAL
#endif // CGAL_INTERNAL_SHAPE_TYPE_H

View File

@ -29,8 +29,6 @@
#include <boost/iterator/transform_iterator.hpp>
#include <CGAL/internal/Shape_type.h>
#include <CGAL/utility.h>
#include <CGAL/Search_traits_3.h>
@ -38,7 +36,8 @@
#include <CGAL/Orthogonal_k_neighbor_search.h>
#include <CGAL/Random.h>
#include <CGAL/internal/check3264.h>
#include <CGAL/Scale_space_reconstruction_3/internal/check3264.h>
#include <CGAL/Scale_space_reconstruction_3/Shape_type.h>
#include <Eigen/Dense>
@ -85,7 +84,7 @@ class Scale_space_surface_reconstructer_3 {
typedef CGAL::Random Random;
// Constructing the surface.
typedef internal::Shape_type< Kernel, Fixed_shape > Shape_generator;
typedef Shape_type< Kernel, Fixed_shape > Shape_generator;
typedef typename Shape_generator::Shape Shape;
typedef typename Shape::Vertex_handle Vertex_handle;