X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=src%2FSMESH_I%2FSMESH_2D_Algo_i.cxx;h=00744eea49a7f4d1a649eec02694f3f39d379194;hp=4114c0d779b750543c3464025eb71cbe3ddab340;hb=482a58db1be716040955d1f187d32e01e6001ba2;hpb=cae755c4b270cbfbe061312428ac77a564aa9607 diff --git a/src/SMESH_I/SMESH_2D_Algo_i.cxx b/src/SMESH_I/SMESH_2D_Algo_i.cxx index 4114c0d77..00744eea4 100644 --- a/src/SMESH_I/SMESH_2D_Algo_i.cxx +++ b/src/SMESH_I/SMESH_2D_Algo_i.cxx @@ -26,46 +26,50 @@ // Module : SMESH // $Header$ -using namespace std; using namespace std; #include "SMESH_2D_Algo_i.hxx" -#include "SMESH_Gen.hxx" -#include "SMESH_HypothesisFactory.hxx" -#include "Utils_CorbaException.hxx" #include "utilities.h" //============================================================================= /*! - * + * SMESH_2D_Algo_i::SMESH_2D_Algo_i + * + * Constructor */ //============================================================================= -SMESH_2D_Algo_i::SMESH_2D_Algo_i() +SMESH_2D_Algo_i::SMESH_2D_Algo_i( PortableServer::POA_ptr thePOA ) + : SALOME::GenericObj_i( thePOA ), + SMESH_Hypothesis_i( thePOA ), + SMESH_Algo_i( thePOA ) { - MESSAGE("SMESH_2D_Algo_i::SMESH_2D_Algo_i"); + MESSAGE( "SMESH_2D_Algo_i::SMESH_2D_Algo_i" ); } //============================================================================= /*! - * + * SMESH_2D_Algo_i::~SMESH_2D_Algo_i + * + * Destructor */ //============================================================================= SMESH_2D_Algo_i::~SMESH_2D_Algo_i() { - MESSAGE("SMESH_2D_Algo_i::~SMESH_2D_Algo_i"); + MESSAGE( "SMESH_2D_Algo_i::~SMESH_2D_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_2D_Algo_i::SetImpl(::SMESH_2D_Algo* impl) +//================================================================================ +CORBA::Boolean SMESH_2D_Algo_i::IsDimSupported( SMESH::Dimension type ) { - MESSAGE("SMESH_2D_Algo_i::SetImpl"); - SMESH_Algo_i::SetImpl(impl); - _impl = impl; + return type == SMESH::DIM_2D; }