00001 /*===========================================================================*\ 00002 * * 00003 * OpenMesh * 00004 * Copyright (C) 2001-2005 by Computer Graphics Group, RWTH Aachen * 00005 * www.openmesh.org * 00006 * * 00007 *---------------------------------------------------------------------------* 00008 * * 00009 * License * 00010 * * 00011 * This library is free software; you can redistribute it and/or modify it * 00012 * under the terms of the GNU Library General Public License as published * 00013 * by the Free Software Foundation, version 2. * 00014 * * 00015 * This library is distributed in the hope that it will be useful, but * 00016 * WITHOUT ANY WARRANTY; without even the implied warranty of * 00017 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * 00018 * Library General Public License for more details. * 00019 * * 00020 * You should have received a copy of the GNU Library General Public * 00021 * License along with this library; if not, write to the Free Software * 00022 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * 00023 * * 00024 \*===========================================================================*/ 00025 #ifndef OPENMESH_ITERATORS_HH 00026 #define OPENMESH_ITERATORS_HH 00027 //============================================================================= 00028 // 00029 // Iterators for PolyMesh/TriMesh 00030 // 00031 //============================================================================= 00032 00033 00034 00035 //== INCLUDES ================================================================= 00036 00037 #include <OpenMesh/Core/System/config.hh> 00038 #include <OpenMesh/Core/Attributes/Status.hh> 00039 #include <assert.h> 00040 00041 00042 //== NAMESPACES =============================================================== 00043 00044 namespace OpenMesh { 00045 namespace Iterators { 00046 00047 00048 //== FORWARD DECLARATIONS ===================================================== 00049 00050 00051 template <class Mesh> class VertexIterT; 00052 template <class Mesh> class ConstVertexIterT; 00053 template <class Mesh> class HalfedgeIterT; 00054 template <class Mesh> class ConstHalfedgeIterT; 00055 template <class Mesh> class EdgeIterT; 00056 template <class Mesh> class ConstEdgeIterT; 00057 template <class Mesh> class FaceIterT; 00058 template <class Mesh> class ConstFaceIterT; 00059 00060 00061 00062