X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2FSMESH_I%2FSMESH_3D_Algo_i.cxx;h=14276fe12ebffda055683e39a120529fef515760;hb=73c48bae5a35eb335ace2c74c116bd14e357ed19;hp=e28872c7784d4ead1e06545f077be9298c5e2aea;hpb=4791f5b30ea7a9c1247aa551750dc71cb83b99aa;p=modules%2Fsmesh.git diff --git a/src/SMESH_I/SMESH_3D_Algo_i.cxx b/src/SMESH_I/SMESH_3D_Algo_i.cxx index e28872c77..14276fe12 100644 --- a/src/SMESH_I/SMESH_3D_Algo_i.cxx +++ b/src/SMESH_I/SMESH_3D_Algo_i.cxx @@ -26,46 +26,51 @@ // Module : SMESH // $Header$ -using namespace std; using namespace std; #include "SMESH_3D_Algo_i.hxx" -#include "SMESH_Gen.hxx" -#include "SMESH_HypothesisFactory.hxx" -#include "Utils_CorbaException.hxx" #include "utilities.h" //============================================================================= /*! - * + * SMESH_3D_Algo_i::SMESH_3D_Algo_i + * + * Constructor */ //============================================================================= -SMESH_3D_Algo_i::SMESH_3D_Algo_i() +SMESH_3D_Algo_i::SMESH_3D_Algo_i( PortableServer::POA_ptr thePOA ) + : SALOME::GenericObj_i( thePOA ), + SMESH_Hypothesis_i( thePOA ), + SMESH_Algo_i( thePOA ) { - MESSAGE("SMESH_3D_Algo_i::SMESH_3D_Algo_i"); + MESSAGE( "SMESH_3D_Algo_i::SMESH_3D_Algo_i" ); } //============================================================================= /*! - * + * SMESH_3D_Algo_i::~SMESH_3D_Algo_i + * + * Destructor */ //============================================================================= SMESH_3D_Algo_i::~SMESH_3D_Algo_i() { - MESSAGE("SMESH_3D_Algo_i::~SMESH_3D_Algo_i"); + MESSAGE( "SMESH_3D_Algo_i::~SMESH_3D_Algo_i" ); } -//============================================================================= +//================================================================================ /*! - * + * \brief Verify whether algorithm supports given entity type + * \param type - dimension (see SMESH::Dimension enumeration) + * \retval CORBA::Boolean - TRUE if dimension is supported, FALSE otherwise + * + * Verify whether algorithm supports given entity type (see SMESH::Dimension enumeration) */ -//============================================================================= - -void SMESH_3D_Algo_i::SetImpl(::SMESH_3D_Algo* impl) +//================================================================================ +CORBA::Boolean SMESH_3D_Algo_i::IsDimSupported( SMESH::Dimension type ) { - MESSAGE("SMESH_3D_Algo_i::SetImpl"); - SMESH_Algo_i::SetImpl(impl); - _impl = impl; + return type == SMESH::DIM_3D; } +