mirror of https://github.com/CGAL/cgal
56 lines
1.5 KiB
C++
56 lines
1.5 KiB
C++
// Copyright (c) 2010-2011 CNRS and LIRIS' Establishments (France).
|
|
// All rights reserved.
|
|
//
|
|
// This file is part of CGAL (www.cgal.org)
|
|
//
|
|
// $URL$
|
|
// $Id$
|
|
// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial
|
|
//
|
|
// Author(s) : Guillaume Damiand <guillaume.damiand@liris.cnrs.fr>
|
|
//
|
|
#ifndef COMBINATORIAL_MAP_FWD_H
|
|
#define COMBINATORIAL_MAP_FWD_H 1
|
|
|
|
#include <CGAL/memory.h>
|
|
#include <CGAL/tags.h>
|
|
|
|
namespace CGAL {
|
|
|
|
struct Generic_map_min_items;
|
|
|
|
template<unsigned int d_, class Items_, class Alloc_,
|
|
class Concurrent_tag=CGAL::Tag_false >
|
|
class Combinatorial_map_storage_1;
|
|
|
|
template<unsigned int d_, class Items_, class Alloc_, class Index_type_ >
|
|
class Combinatorial_map_storage_2;
|
|
|
|
template < unsigned int d_, class Refs_,
|
|
class Items_=Generic_map_min_items,
|
|
class Alloc_=CGAL_ALLOCATOR(int),
|
|
class Storage_= Combinatorial_map_storage_1
|
|
<d_, Items_, Alloc_, CGAL::Tag_false> >
|
|
class Combinatorial_map_base;
|
|
|
|
template < unsigned int d_,
|
|
class Items_=Generic_map_min_items,
|
|
class Alloc_=CGAL_ALLOCATOR(int),
|
|
class Storage_= Combinatorial_map_storage_1
|
|
<d_, Items_, Alloc_, CGAL::Tag_false> >
|
|
class Combinatorial_map;
|
|
|
|
namespace Index
|
|
{
|
|
template < unsigned int d_,
|
|
class Items_=Generic_map_min_items,
|
|
class Alloc_=CGAL_ALLOCATOR(int),
|
|
class Storage_= Combinatorial_map_storage_2
|
|
<d_, Items_, Alloc_, unsigned int> >
|
|
class Combinatorial_map;
|
|
} // namespace Index
|
|
|
|
} // CGAL
|
|
|
|
#endif // COMBINATORIAL_MAP_FWD_H
|