X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSMDS%2FSMDS_MeshElement.cxx;h=8d4d9b75dc2e0bb913603c73ac5a5fefb72f9887;hb=c75bbbb996e0fbfc37b71b5a1da53f8029ced841;hp=827737228bb485cf64f78e3f315a633d5257f55a;hpb=484fe83a97f643207334576fbe08d4a90d67fd37;p=modules%2Fsmesh.git diff --git a/src/SMDS/SMDS_MeshElement.cxx b/src/SMDS/SMDS_MeshElement.cxx index 827737228..8d4d9b75d 100644 --- a/src/SMDS/SMDS_MeshElement.cxx +++ b/src/SMDS/SMDS_MeshElement.cxx @@ -19,6 +19,10 @@ // // See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org +#ifdef _MSC_VER +#pragma warning(disable:4786) +#endif + #include "SMDS_MeshElement.hxx" #include "SMDS_MeshNode.hxx" #include "SMDS_MeshEdge.hxx" @@ -26,6 +30,8 @@ #include "SMDS_MeshVolume.hxx" #include "utilities.h" +using namespace std; + SMDS_MeshElement::SMDS_MeshElement(int ID):myID(ID) { } @@ -45,7 +51,7 @@ ostream & operator <<(ostream & OS, const SMDS_MeshElement * ME) /// Create an iterator which iterate on nodes owned by the element. /// This method call elementsIterator(). /////////////////////////////////////////////////////////////////////////////// -SMDS_Iterator * SMDS_MeshElement::nodesIterator() const +SMDS_ElemIteratorPtr SMDS_MeshElement::nodesIterator() const { return elementsIterator(SMDSAbs_Node); } @@ -54,7 +60,7 @@ SMDS_Iterator * SMDS_MeshElement::nodesIterator() cons /// Create an iterator which iterate on edges linked with or owned by the element. /// This method call elementsIterator(). /////////////////////////////////////////////////////////////////////////////// -SMDS_Iterator * SMDS_MeshElement::edgesIterator() const +SMDS_ElemIteratorPtr SMDS_MeshElement::edgesIterator() const { return elementsIterator(SMDSAbs_Edge); } @@ -63,7 +69,7 @@ SMDS_Iterator * SMDS_MeshElement::edgesIterator() cons /// Create an iterator which iterate on faces linked with or owned by the element. /// This method call elementsIterator(). /////////////////////////////////////////////////////////////////////////////// -SMDS_Iterator * SMDS_MeshElement::facesIterator() const +SMDS_ElemIteratorPtr SMDS_MeshElement::facesIterator() const { return elementsIterator(SMDSAbs_Face); } @@ -74,13 +80,12 @@ SMDS_Iterator * SMDS_MeshElement::facesIterator() cons int SMDS_MeshElement::NbNodes() const { int nbnodes=0; - SMDS_Iterator * it=nodesIterator(); + SMDS_ElemIteratorPtr it=nodesIterator(); while(it->more()) { it->next(); nbnodes++; } - delete it; return nbnodes; } @@ -90,13 +95,12 @@ int SMDS_MeshElement::NbNodes() const int SMDS_MeshElement::NbEdges() const { int nbedges=0; - SMDS_Iterator * it=edgesIterator(); + SMDS_ElemIteratorPtr it=edgesIterator(); while(it->more()) { it->next(); nbedges++; } - delete it; return nbedges; } @@ -106,52 +110,52 @@ int SMDS_MeshElement::NbEdges() const int SMDS_MeshElement::NbFaces() const { int nbfaces=0; - SMDS_Iterator * it=facesIterator(); + SMDS_ElemIteratorPtr it=facesIterator(); while(it->more()) { it->next(); nbfaces++; } - delete it; return nbfaces; } /////////////////////////////////////////////////////////////////////////////// -///Create and iterator which iterate on elements linked with the current element. -///The iterator must be free by the caller (call delete myIterator). +///Create an iterator which iterate on elements linked with the current element. ///@param type The of elements on which you want to iterate -///@return An iterator, that you must free when you no longer need it +///@return A smart pointer to iterator, you are not to take care of freeing memory /////////////////////////////////////////////////////////////////////////////// -SMDS_Iterator * SMDS_MeshElement:: +class SMDS_MeshElement_MyIterator:public SMDS_ElemIterator +{ + const SMDS_MeshElement * myElement; + bool myMore; + public: + SMDS_MeshElement_MyIterator(const SMDS_MeshElement * element): + myElement(element),myMore(true) {} + + bool more() + { + return myMore; + } + + const SMDS_MeshElement* next() + { + myMore=false; + return myElement; + } +}; +SMDS_ElemIteratorPtr SMDS_MeshElement:: elementsIterator(SMDSAbs_ElementType type) const { - class MyIterator:public SMDS_Iterator - { - const SMDS_MeshElement * myElement; - bool myMore; - public: - MyIterator(const SMDS_MeshElement * element): - myElement(element),myMore(true) - { - } - - bool more() - { - return myMore; - } - - const SMDS_MeshElement* next() - { - myMore=false; - return myElement; - } - }; + /** @todo Check that iterator in the child classes return elements + in the same order for each different implementation (i.e: SMDS_VolumeOfNodes + and SMDS_VolumeOfFaces */ - if(type==GetType()) return new MyIterator(this); + if(type==GetType()) + return SMDS_ElemIteratorPtr(new SMDS_MeshElement_MyIterator(this)); else { - MESSAGE("Iterator not implemented"); - return NULL; + MESSAGE("Iterator not implemented"); + return SMDS_ElemIteratorPtr((SMDS_ElemIterator*)NULL); } } @@ -186,4 +190,5 @@ bool operator<(const SMDS_MeshElement& e1, const SMDS_MeshElement& e2) default : MESSAGE("Internal Error"); } + return false; }