X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSMESHDS%2FSMESHDS_GroupBase.hxx;h=ced9543fa5f37c5b6a9c7f5486712f2cfe36109a;hb=59b7f3d704b00cd82652046ff6fe3f2dd50a14c9;hp=1902f8e9d397aee4c2b7560d714e289ce853acb8;hpb=4ff5bd61540272713e48de1eee75625028c32155;p=modules%2Fsmesh.git diff --git a/src/SMESHDS/SMESHDS_GroupBase.hxx b/src/SMESHDS/SMESHDS_GroupBase.hxx index 1902f8e9d..ced9543fa 100644 --- a/src/SMESHDS/SMESHDS_GroupBase.hxx +++ b/src/SMESHDS/SMESHDS_GroupBase.hxx @@ -1,39 +1,43 @@ -// SMESH SMESHDS : management of mesh data and SMESH document +// Copyright (C) 2007-2008 CEA/DEN, EDF R&D, OPEN CASCADE +// +// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, +// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS +// +// This library is free software; you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public +// License as published by the Free Software Foundation; either +// version 2.1 of the License. // -// Copyright (C) 2004 CEA -// -// This library is free software; you can redistribute it and/or -// modify it under the terms of the GNU Lesser General Public -// License as published by the Free Software Foundation; either -// version 2.1 of the License. -// -// This library is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -// Lesser General Public License for more details. -// -// You should have received a copy of the GNU Lesser General Public -// License along with this library; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// -// See http://www.salome-platform.org or email : webmaster.salome@opencascade.org +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. // +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // +// SMESH SMESHDS : management of mesh data and SMESH document // File : SMESHDS_Group.hxx // Module : SMESH // $Header$ - +// #ifndef _SMESHDS_GroupBase_HeaderFile #define _SMESHDS_GroupBase_HeaderFile +#include "SMESH_SMESHDS.hxx" + #include #include "SMDSAbs_ElementType.hxx" #include "SMDS_MeshElement.hxx" + +#include class SMESHDS_Mesh; -class SMESHDS_GroupBase +class SMESHDS_EXPORT SMESHDS_GroupBase { public: @@ -59,6 +63,8 @@ class SMESHDS_GroupBase virtual bool Contains (const int theID); + virtual bool Contains (const SMDS_MeshElement* elem); + virtual SMDS_ElemIteratorPtr GetElements() = 0; int GetID (const int theIndex); @@ -66,11 +72,15 @@ class SMESHDS_GroupBase virtual ~SMESHDS_GroupBase() {} - void SetColorGroup (int theColorGroup) - { myColorGroup = theColorGroup;} + void SetColor (const Quantity_Color& theColor) + { myColor = theColor;} - int GetColorGroup() const - { return myColorGroup;} + Quantity_Color GetColor() const + { return myColor;} + + void SetColorGroup (int theColorGroup); + + int GetColorGroup() const; protected: const SMDS_MeshElement* findInMesh (const int theID) const; @@ -90,7 +100,7 @@ class SMESHDS_GroupBase int myCurIndex; int myCurID; SMDS_ElemIteratorPtr myIterator; - int myColorGroup; + Quantity_Color myColor; }; #endif