1 // SMESH SMDS : implementaion of Salome mesh data structure
3 // Copyright (C) 2003 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 // Lesser General Public License for more details.
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 // See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org
24 // File : SMDS_MeshElement.hxx
27 #ifndef _SMDS_MeshElement_HeaderFile
28 #define _SMDS_MeshElement_HeaderFile
30 #include "SMDSAbs_ElementType.hxx"
31 #include "SMDS_MeshObject.hxx"
32 #include "SMDS_ElemIterator.hxx"
33 #include "SMDS_MeshElementIDFactory.hxx"
42 ///////////////////////////////////////////////////////////////////////////////
43 /// Base class for elements
44 ///////////////////////////////////////////////////////////////////////////////
45 class SMDS_MeshElement:public SMDS_MeshObject
49 SMDS_ElemIteratorPtr nodesIterator() const;
50 SMDS_ElemIteratorPtr edgesIterator() const;
51 SMDS_ElemIteratorPtr facesIterator() const;
52 virtual SMDS_ElemIteratorPtr
53 elementsIterator(SMDSAbs_ElementType type) const;
55 virtual int NbNodes() const;
56 virtual int NbEdges() const;
57 virtual int NbFaces() const;
60 ///Return the type of the current element
61 virtual SMDSAbs_ElementType GetType() const = 0;
62 virtual bool IsPoly() const { return false; };
64 friend std::ostream & operator <<(std::ostream & OS, const SMDS_MeshElement *);
65 friend bool SMDS_MeshElementIDFactory::BindID(int ID,SMDS_MeshElement*elem);
68 SMDS_MeshElement(int ID=-1);
69 virtual void Print(std::ostream & OS) const;