X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGEOMFiltersSelection%2FGEOM_EdgeFilter.cxx;fp=src%2FGEOMFiltersSelection%2FGEOM_EdgeFilter.cxx;h=4004ebe40058b94610b952ca2e3e2291fc2d86fb;hb=732211808796539fcf1de34e06038e7fb015ece9;hp=94729c71d26ac97cfb5b20d1d6e0097172af5905;hpb=0213ec66495d08807c5d4e2e98cd15cfb994d154;p=modules%2Fgeom.git diff --git a/src/GEOMFiltersSelection/GEOM_EdgeFilter.cxx b/src/GEOMFiltersSelection/GEOM_EdgeFilter.cxx index 94729c71d..4004ebe40 100644 --- a/src/GEOMFiltersSelection/GEOM_EdgeFilter.cxx +++ b/src/GEOMFiltersSelection/GEOM_EdgeFilter.cxx @@ -1,54 +1,34 @@ -// GEOM GEOMFiltersSelection : filter selector for the viewer -// -// Copyright (C) 2003 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. -// -// 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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org -// -// -// -// File : GEOM_EdgeFilter.cxx -// Author : Nicolas REJNERI -// Module : GEOM -// $Header$ - -using namespace std; -#include "GEOM_EdgeFilter.ixx" +#include "GEOM_EdgeFilter.h" #include #include #include +#include +//======================================================================= +// function : GEOM_EdgeFilter +// purpose : +//======================================================================= +GEOM_EdgeFilter::GEOM_EdgeFilter( SalomeApp_Study* study, const int kind ) +: GEOM_SelectionFilter( study ), +myKind( kind ) +{ + add( TopAbs_EDGE ); +} //======================================================================= -// function : IsShapeOk -// purpose : enumeration TypeOfEdge is AnyEdge,Line,Circle; +// function : ~GEOM_SelectionFilter +// purpose : //======================================================================= -GEOM_EdgeFilter::GEOM_EdgeFilter( const StdSelect_TypeOfEdge theKind ) -: GEOM_ShapeTypeFilter( TopAbs_EDGE ) +GEOM_EdgeFilter::~GEOM_EdgeFilter() { - myKind = theKind; } //======================================================================= -// function : IsShapeOk +// function : isShapeOk // purpose : //======================================================================= -Standard_Boolean GEOM_EdgeFilter::IsShapeOk( const TopoDS_Shape& theShape ) const +bool GEOM_EdgeFilter::isShapeOk( const TopoDS_Shape& theShape ) const { if ( !theShape.IsNull() && theShape.ShapeType() == TopAbs_EDGE ) { @@ -62,5 +42,6 @@ Standard_Boolean GEOM_EdgeFilter::IsShapeOk( const TopoDS_Shape& theShape ) cons case StdSelect_Circle: return ( aType == GeomAbs_Circle ); } } - return Standard_False; + return false; } +