cgal/Mesh_2/include/CGAL/Meshes/Simple_map_container.h

84 lines
1.9 KiB
C++

// Copyright (c) 2007 INRIA Sophia-Antipolis (France).
// All rights reserved.
//
// This file is part of CGAL (www.cgal.org); you may redistribute it under
// the terms of the Q Public License version 1.0.
// See the file LICENSE.QPL distributed with CGAL.
//
// Licensees holding a valid commercial license may use this file in
// accordance with the commercial license agreement provided with the software.
//
// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
//
// $URL$
// $Id$
//
//
// Author(s) : Laurent RINEAU
#ifndef CGAL_MESHES_SIMPLE_MAP_CONTAINER_H
#define CGAL_MESHES_SIMPLE_MAP_CONTAINER_H
#include <map>
namespace CGAL {
namespace Meshes {
template <typename Element, typename Info>
class Simple_map_container
{
public:
typedef std::map<Element, Info> Map;
typedef typename Map::size_type size_type;
typedef typename Map::value_type value_type;
protected:
// --- protected datas ---
Map map;
public:
bool no_longer_element_to_refine_impl() const
{
return map.empty();
}
const value_type& get_next_element_impl()
{
CGAL_assertion(!map.empty());
return *(map.begin());
}
void add_bad_element(const Element& e, const Info& i)
{
map.insert(std::make_pair(e, i));
}
void pop_next_element_impl()
{
map.erase(map.begin());
}
void remove_element(const Element& e)
{
map.erase(e);
}
const Info& info(const Element& e)
{
return map[e];
}
size_type size() const
{
return map.size();
}
}; // end Simple_map_container
} // end namespace Mesh_3
} // end namespace CGAL
#endif // CGAL_MESHES_SIMPLE_MAP_CONTAINER_H