X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=src%2FStdMeshers_I%2FStdMeshers_Projection_1D_2D_3D_i.cxx;h=d9b135b0bc71d23dc25f3ca001f341de73b8a369;hp=771b4e828d955e9a636e5046ceee8e5764f76527;hb=264eeb2edd6977ccf2d2bd88cbb210353f63f7c9;hpb=b0a908c0d20341651771d0249fb10882f54b2aad diff --git a/src/StdMeshers_I/StdMeshers_Projection_1D_2D_3D_i.cxx b/src/StdMeshers_I/StdMeshers_Projection_1D_2D_3D_i.cxx index 771b4e828..d9b135b0b 100644 --- a/src/StdMeshers_I/StdMeshers_Projection_1D_2D_3D_i.cxx +++ b/src/StdMeshers_I/StdMeshers_Projection_1D_2D_3D_i.cxx @@ -1,4 +1,4 @@ -// Copyright (C) 2007-2014 CEA/DEN, EDF R&D, OPEN CASCADE +// Copyright (C) 2007-2016 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 @@ -40,32 +40,38 @@ using namespace std; //============================================================================= StdMeshers_Projection_3D_i::StdMeshers_Projection_3D_i( PortableServer::POA_ptr thePOA, - int theStudyId, ::SMESH_Gen* theGenImpl ) : SALOME::GenericObj_i( thePOA ), SMESH_Hypothesis_i( thePOA ), SMESH_Algo_i( thePOA ), SMESH_3D_Algo_i( thePOA ) { - MESSAGE( "StdMeshers_Projection_3D_i::StdMeshers_Projection_3D_i" ); myBaseImpl = new ::StdMeshers_Projection_3D( theGenImpl->GetANewId(), - theStudyId, - theGenImpl ); + theGenImpl ); } //----------------------------------------------------------------------------- StdMeshers_Projection_3D_i::~StdMeshers_Projection_3D_i() { - MESSAGE( "StdMeshers_Projection_3D_i::~StdMeshers_Projection_3D_i" ); } //----------------------------------------------------------------------------- ::StdMeshers_Projection_3D* StdMeshers_Projection_3D_i::GetImpl() { - MESSAGE( "StdMeshers_Projection_3D_i::GetImpl" ); return ( ::StdMeshers_Projection_3D* )myBaseImpl; } +//================================================================================ +/*! + * \brief Return true if the algorithm is applicable to a shape + */ +//================================================================================ + +CORBA::Boolean StdMeshers_Projection_3D_i::IsApplicable(const TopoDS_Shape &S, + CORBA::Boolean toCheckAll) +{ + return ::StdMeshers_Projection_3D::IsApplicable( S, toCheckAll ); +} //============================================================================= /*! @@ -74,29 +80,24 @@ StdMeshers_Projection_3D_i::~StdMeshers_Projection_3D_i() //============================================================================= StdMeshers_Projection_2D_i::StdMeshers_Projection_2D_i( PortableServer::POA_ptr thePOA, - int theStudyId, ::SMESH_Gen* theGenImpl ) : SALOME::GenericObj_i( thePOA ), SMESH_Hypothesis_i( thePOA ), SMESH_Algo_i( thePOA ), SMESH_2D_Algo_i( thePOA ) { - MESSAGE( "StdMeshers_Projection_2D_i::StdMeshers_Projection_2D_i" ); myBaseImpl = new ::StdMeshers_Projection_2D( theGenImpl->GetANewId(), - theStudyId, - theGenImpl ); + theGenImpl ); } //----------------------------------------------------------------------------- StdMeshers_Projection_2D_i::~StdMeshers_Projection_2D_i() { - MESSAGE( "StdMeshers_Projection_2D_i::~StdMeshers_Projection_2D_i" ); } //----------------------------------------------------------------------------- ::StdMeshers_Projection_2D* StdMeshers_Projection_2D_i::GetImpl() { - MESSAGE( "StdMeshers_Projection_2D_i::GetImpl" ); return ( ::StdMeshers_Projection_2D* )myBaseImpl; } @@ -108,29 +109,24 @@ StdMeshers_Projection_2D_i::~StdMeshers_Projection_2D_i() //============================================================================= StdMeshers_Projection_1D2D_i::StdMeshers_Projection_1D2D_i( PortableServer::POA_ptr thePOA, - int theStudyId, ::SMESH_Gen* theGenImpl ) : SALOME::GenericObj_i( thePOA ), SMESH_Hypothesis_i( thePOA ), SMESH_Algo_i( thePOA ), SMESH_2D_Algo_i( thePOA ) { - MESSAGE( "StdMeshers_Projection_1D2D_i::StdMeshers_Projection_1D2D_i" ); myBaseImpl = new ::StdMeshers_Projection_1D2D( theGenImpl->GetANewId(), - theStudyId, theGenImpl ); } //----------------------------------------------------------------------------- StdMeshers_Projection_1D2D_i::~StdMeshers_Projection_1D2D_i() { - MESSAGE( "StdMeshers_Projection_1D2D_i::~StdMeshers_Projection_1D2D_i" ); } //----------------------------------------------------------------------------- ::StdMeshers_Projection_1D2D* StdMeshers_Projection_1D2D_i::GetImpl() { - MESSAGE( "StdMeshers_Projection_1D2D_i::GetImpl" ); return ( ::StdMeshers_Projection_1D2D* )myBaseImpl; } @@ -142,28 +138,23 @@ StdMeshers_Projection_1D2D_i::~StdMeshers_Projection_1D2D_i() //============================================================================= StdMeshers_Projection_1D_i::StdMeshers_Projection_1D_i( PortableServer::POA_ptr thePOA, - int theStudyId, ::SMESH_Gen* theGenImpl ) : SALOME::GenericObj_i( thePOA ), SMESH_Hypothesis_i( thePOA ), SMESH_Algo_i( thePOA ), SMESH_1D_Algo_i( thePOA ) { - MESSAGE( "StdMeshers_Projection_1D_i::StdMeshers_Projection_1D_i" ); myBaseImpl = new ::StdMeshers_Projection_1D( theGenImpl->GetANewId(), - theStudyId, - theGenImpl ); + theGenImpl ); } //----------------------------------------------------------------------------- StdMeshers_Projection_1D_i::~StdMeshers_Projection_1D_i() { - MESSAGE( "StdMeshers_Projection_1D_i::~StdMeshers_Projection_1D_i" ); } //----------------------------------------------------------------------------- ::StdMeshers_Projection_1D* StdMeshers_Projection_1D_i::GetImpl() { - MESSAGE( "StdMeshers_Projection_1D_i::GetImpl" ); return ( ::StdMeshers_Projection_1D* )myBaseImpl; }