dust3d/thirdparty/cgal/CGAL-5.1/include/CGAL/Meshes/Simple_queue_container.h

65 lines
1.4 KiB
C
Raw Normal View History

// Copyright (c) 2004-2005 INRIA Sophia-Antipolis (France).
// All rights reserved.
//
2020-10-13 12:44:25 +00:00
// This file is part of CGAL (www.cgal.org)
//
2020-10-13 12:44:25 +00:00
// $URL: https://github.com/CGAL/cgal/blob/v5.1/Mesher_level/include/CGAL/Meshes/Simple_queue_container.h $
// $Id: Simple_queue_container.h 0779373 2020-03-26T13:31:46+01:00 Sébastien Loriot
// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial
//
//
// Author(s) : Laurent RINEAU
#ifndef CGAL_MESH_3_SIMPLE_QUEUE_CONTAINER_H
#define CGAL_MESH_3_SIMPLE_QUEUE_CONTAINER_H
#include <queue>
namespace CGAL {
namespace Mesh_3 {
template <typename Elt>
2020-10-13 12:44:25 +00:00
class Simple_queue_container
{
public:
typedef Elt Element;
typedef std::queue<Element> Queue;
typedef typename Queue::size_type size_type;
protected:
// --- protected datas ---
Queue q;
public:
bool no_longer_element_to_refine_impl() const
{
return q.empty();
}
Element& get_next_element_impl()
{
return q.front();
}
void add_bad_element(const Element& e)
{
q.push(e);
}
void pop_next_element_impl()
{
q.pop();
}
size_type size() const
{
2020-10-13 12:44:25 +00:00
return q.size();
}
}; // end Simple_queue_container
2020-10-13 12:44:25 +00:00
} // end namespace Mesh_3
} // end namespace CGAL
#endif // CGAL_MESH_3_SIMPLE_QUEUE_CONTAINER_H