X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=src%2FSMESHFiltersSelection%2FSMESH_NumberFilter.hxx;h=3849f546e3b346d15e95ab82f2c8a59f0047ccfe;hp=4b9f29ceaaa16e4d112949a993f450e4719671d4;hb=9357f5c87098aff2b95b754d69f66c76d2df9c24;hpb=2754c581d371f9bf52b3c538a7bde55f10f6523c diff --git a/src/SMESHFiltersSelection/SMESH_NumberFilter.hxx b/src/SMESHFiltersSelection/SMESH_NumberFilter.hxx index 4b9f29cea..3849f546e 100644 --- a/src/SMESHFiltersSelection/SMESH_NumberFilter.hxx +++ b/src/SMESHFiltersSelection/SMESH_NumberFilter.hxx @@ -1,28 +1,33 @@ -// Copyright (C) 2005 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. -// -// 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. +// Copyright (C) 2007-2010 CEA/DEN, EDF R&D, OPEN CASCADE // -// 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 +// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, +// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS // -// See http://www.salome-platform.org/ +// 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.com +// + // File : SMESH_NumberFilter.hxx // Module : SMESH - +// #ifndef _SMESH_NumberFilter_HeaderFile #define _SMESH_NumberFilter_HeaderFile +#include "SMESH_Type.h" + #include "SUIT_SelectionFilter.h" #include @@ -31,6 +36,8 @@ #include #include CORBA_SERVER_HEADER(GEOM_Gen) +#include + class SUIT_DataOwner; /*! @@ -39,13 +46,14 @@ class SUIT_DataOwner; * Filter geom objects by number of subshapes of the given type * Parameters of constructor: * * theSubShapeType - Type of subshape - * * theNumber - Number of subshapes. Object is selected if it contains theNumber of - * theSubShapeType sub-shapes + * * theNumber - Number of subshapes. Object is selected if it contains + * theNumber of theSubShapeType sub-shapes, or at least + * one theSubShapeType, provided that theNumber==0 * * theShapeType - This map specifies types of object to be selected * * theMainObject - Sub-shapes of this object is selected only * * theIsClosedOnly - Closed shapes is selected if this parameter is true */ -class SMESH_NumberFilter : public SUIT_SelectionFilter +class SMESHFILTERSSELECTION_EXPORT SMESH_NumberFilter : public SUIT_SelectionFilter { public: SMESH_NumberFilter (const char* theKind, @@ -77,7 +85,7 @@ class SMESH_NumberFilter : public SUIT_SelectionFilter GEOM::GEOM_Object_ptr getGeom (const SUIT_DataOwner*, const bool extractReference = true ) const; private: - char* myKind; + std::string myKind; TopAbs_ShapeEnum mySubShapeType; int myNumber; bool myIsClosedOnly;