
Public Member Functions | |
| SortableElement (const SMDS_MeshElement *theElem) | |
| const SMDS_MeshElement * | Get () const |
| void | Set (const SMDS_MeshElement *e) const |
Private Attributes | |
| const SMDS_MeshElement * | myElem |
Definition at line 7954 of file SMESH_MeshEditor.cxx.
| SortableElement.SortableElement | ( | const SMDS_MeshElement * | theElem | ) |
Definition at line 7958 of file SMESH_MeshEditor.cxx.
References SMDS_MeshElement.nodesIterator().
{
myElem = theElem;
SMDS_ElemIteratorPtr nodeIt = theElem->nodesIterator();
while ( nodeIt->more() )
this->insert( nodeIt->next() );
}
| const SMDS_MeshElement* SortableElement.Get | ( | ) | const |
Definition at line 7966 of file SMESH_MeshEditor.cxx.
{ return myElem; }
| void SortableElement.Set | ( | const SMDS_MeshElement * | e | ) | const |
Definition at line 7969 of file SMESH_MeshEditor.cxx.
{ myElem = e; }
const SMDS_MeshElement* SortableElement.myElem [mutable, private] |
Definition at line 7974 of file SMESH_MeshEditor.cxx.