81 lines
1.8 KiB
C
81 lines
1.8 KiB
C
|
// Copyright (c) 2004 INRIA Sophia-Antipolis (France).
|
||
|
// All rights reserved.
|
||
|
//
|
||
|
// This file is part of CGAL (www.cgal.org); you can redistribute it and/or
|
||
|
// modify it under the terms of the GNU Lesser General Public License as
|
||
|
// published by the Free Software Foundation; either version 3 of the License,
|
||
|
// or (at your option) any later version.
|
||
|
//
|
||
|
// 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$
|
||
|
// SPDX-License-Identifier: LGPL-3.0+
|
||
|
//
|
||
|
//
|
||
|
// Author(s) : Laurent RINEAU
|
||
|
|
||
|
#ifndef CGAL_MESHES_SIMPLE_SET_CONTAINER_H
|
||
|
#define CGAL_MESHES_SIMPLE_SET_CONTAINER_H
|
||
|
|
||
|
#include <set>
|
||
|
|
||
|
namespace CGAL {
|
||
|
|
||
|
namespace Meshes {
|
||
|
|
||
|
template <typename Element>
|
||
|
class Simple_set_container
|
||
|
{
|
||
|
public:
|
||
|
typedef std::set<Element> Set;
|
||
|
typedef typename Set::size_type size_type;
|
||
|
|
||
|
protected:
|
||
|
// --- protected datas ---
|
||
|
Set s;
|
||
|
|
||
|
public:
|
||
|
bool no_longer_element_to_refine_impl() const
|
||
|
{
|
||
|
return s.empty();
|
||
|
}
|
||
|
|
||
|
Element get_next_element_impl()
|
||
|
{
|
||
|
CGAL_assertion(!s.empty());
|
||
|
|
||
|
return *(s.begin());
|
||
|
|
||
|
}
|
||
|
|
||
|
void add_bad_element(const Element& e)
|
||
|
{
|
||
|
s.insert(e);
|
||
|
}
|
||
|
|
||
|
void pop_next_element_impl()
|
||
|
{
|
||
|
s.erase(s.begin());
|
||
|
}
|
||
|
|
||
|
void remove_element(const Element& e)
|
||
|
{
|
||
|
s.erase(e);
|
||
|
}
|
||
|
|
||
|
size_type size() const
|
||
|
{
|
||
|
return s.size();
|
||
|
}
|
||
|
}; // end Simple_set_container
|
||
|
|
||
|
} // end namespace Meshes
|
||
|
} // end namespace CGAL
|
||
|
|
||
|
#endif // CGAL_MESHES_SIMPLE_SET_CONTAINER_H
|