From: eap Date: Fri, 4 Feb 2005 10:34:55 +0000 (+0000) Subject: PAL7933. Add static IsApplicableHypothesis() X-Git-Tag: V2_2_0b4~14 X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=commitdiff_plain;h=45e910e8aa2dd550b677826667b11adb97c1204d PAL7933. Add static IsApplicableHypothesis() --- diff --git a/src/SMESH/SMESH_subMesh.hxx b/src/SMESH/SMESH_subMesh.hxx index 07909232d..8251c6b94 100644 --- a/src/SMESH/SMESH_subMesh.hxx +++ b/src/SMESH/SMESH_subMesh.hxx @@ -121,7 +121,11 @@ class SMESH_subMesh // return true if theHypothesis can be attached to me: // its dimention is checked - bool IsApplicableHypotesis(const SMESH_Hypothesis* theHypothesis) const; + static bool IsApplicableHypotesis(const SMESH_Hypothesis* theHypothesis, + const TopAbs_ShapeEnum theShapeType); + + bool IsApplicableHypotesis(const SMESH_Hypothesis* theHypothesis) const + { return IsApplicableHypotesis( theHypothesis, _subShape.ShapeType() ); } // return true if theHypothesis can be used to mesh me: // its shape type is checked