Salome HOME
37a3fb51df8cfdfc4f4361f80e08c691ecef106d
[tools/medcoupling.git] / src / INTERP_KERNEL / Geometric2D / InterpKernelGeo2DAbstractEdge.hxx
1 // Copyright (C) 2007-2012  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #ifndef __INTERPKERNELGEO2DABSTRACTEDGE_HXX__
21 #define __INTERPKERNELGEO2DABSTRACTEDGE_HXX__
22
23 #include "INTERPKERNELDefines.hxx"
24
25 #include <set>
26 #include <list>
27 #include <fstream>
28
29 namespace INTERP_KERNEL
30 {
31   class Edge;
32   class Node;
33   class Bounds;
34
35   class ComposedEdge;
36   class ElementaryEdge;
37
38   /*!
39    * Asumption is done with this iterator that we iterate on a container containing more than one edge.
40    */
41   class INTERPKERNEL_EXPORT IteratorOnComposedEdge
42   {
43     friend class ComposedEdge;
44     friend class ElementaryEdge;
45     friend class QuadraticPolygon;
46   public:
47     IteratorOnComposedEdge();
48     IteratorOnComposedEdge(ComposedEdge *compEdges);
49     bool isValid() const { return _list_handle!=0; } 
50     void operator=(const IteratorOnComposedEdge& other);
51     void first() { _deep_it=_list_handle->begin(); }
52     void next() { _deep_it++; }
53     void last();
54     void nextLoop();
55     void previousLoop();
56     bool finished() const { return _deep_it==_list_handle->end(); }
57     bool goToNextInOn(bool direction, int& i, int nbMax);
58     ElementaryEdge *current() { return *_deep_it; }
59     void assignMySelfToAllElems(ComposedEdge *elems);
60     void insertElemEdges(ComposedEdge *elems, bool changeMySelf);
61   private:
62     std::list<ElementaryEdge *>::iterator _deep_it;
63     std::list<ElementaryEdge *>* _list_handle;
64   };
65 }
66
67 #endif