mirror of https://github.com/CGAL/cgal
Fix package Combinatorial_map: include headers
This commit is contained in:
parent
ceb6961594
commit
347bd827b5
|
|
@ -24,6 +24,11 @@
|
||||||
|
|
||||||
namespace CGAL {
|
namespace CGAL {
|
||||||
|
|
||||||
|
namespace internal {
|
||||||
|
template<typename CMap, unsigned int i, typename T>
|
||||||
|
struct Decrease_attribute_functor_run;
|
||||||
|
}
|
||||||
|
|
||||||
template < unsigned int, class, class, class, class >
|
template < unsigned int, class, class, class, class >
|
||||||
class Combinatorial_map_base;
|
class Combinatorial_map_base;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -20,6 +20,7 @@
|
||||||
#ifndef CGAL_COMBINATORIAL_MAP_BASIC_OPERATIONS_H
|
#ifndef CGAL_COMBINATORIAL_MAP_BASIC_OPERATIONS_H
|
||||||
#define CGAL_COMBINATORIAL_MAP_BASIC_OPERATIONS_H 1
|
#define CGAL_COMBINATORIAL_MAP_BASIC_OPERATIONS_H 1
|
||||||
|
|
||||||
|
#include <CGAL/Combinatorial_map_iterators_base.h>
|
||||||
#include <boost/type_traits/is_same.hpp>
|
#include <boost/type_traits/is_same.hpp>
|
||||||
#include <CGAL/tags.h>
|
#include <CGAL/tags.h>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -21,6 +21,7 @@
|
||||||
#define CGAL_COMBINATORIAL_MAP_INSERTIONS_H
|
#define CGAL_COMBINATORIAL_MAP_INSERTIONS_H
|
||||||
|
|
||||||
#include <deque>
|
#include <deque>
|
||||||
|
#include <CGAL/config.h>
|
||||||
|
|
||||||
namespace CGAL
|
namespace CGAL
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -22,6 +22,9 @@
|
||||||
|
|
||||||
#include <CGAL/Combinatorial_map_basic_operations.h>
|
#include <CGAL/Combinatorial_map_basic_operations.h>
|
||||||
#include <CGAL/Combinatorial_map_insertions.h>
|
#include <CGAL/Combinatorial_map_insertions.h>
|
||||||
|
#include <CGAL/internal/Combinatorial_map_sewable.h>
|
||||||
|
#include <CGAL/internal/Combinatorial_map_group_functors.h>
|
||||||
|
|
||||||
#include <deque>
|
#include <deque>
|
||||||
#include <stack>
|
#include <stack>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -23,6 +23,7 @@
|
||||||
#include <CGAL/Handle_hash_function.h>
|
#include <CGAL/Handle_hash_function.h>
|
||||||
|
|
||||||
#include <CGAL/Compact_container.h>
|
#include <CGAL/Compact_container.h>
|
||||||
|
#include <bitset>
|
||||||
|
|
||||||
#include <boost/config.hpp>
|
#include <boost/config.hpp>
|
||||||
#if (BOOST_GCC >= 40900)
|
#if (BOOST_GCC >= 40900)
|
||||||
|
|
@ -32,6 +33,11 @@ _Pragma("GCC diagnostic ignored \"-Warray-bounds\"")
|
||||||
|
|
||||||
namespace CGAL {
|
namespace CGAL {
|
||||||
|
|
||||||
|
namespace internal {
|
||||||
|
template <typename M>
|
||||||
|
class Combinatorial_map_helper;
|
||||||
|
}
|
||||||
|
|
||||||
/** @file Combinatorial_map_storages.h
|
/** @file Combinatorial_map_storages.h
|
||||||
* Definition of storages for dD Combinatorial map.
|
* Definition of storages for dD Combinatorial map.
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,13 @@
|
||||||
|
|
||||||
namespace CGAL {
|
namespace CGAL {
|
||||||
|
|
||||||
|
namespace internal {
|
||||||
|
template <typename M>
|
||||||
|
class Reverse_orientation_of_map_functor;
|
||||||
|
template <typename M>
|
||||||
|
class Reverse_orientation_of_connected_component_functor;
|
||||||
|
}
|
||||||
|
|
||||||
/** @file Dart.h
|
/** @file Dart.h
|
||||||
* Definition of nD dart.
|
* Definition of nD dart.
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue