X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2FSMESH_I%2FSMESH_1D_Algo_i.cxx;h=56cb13fa90343869c1dc67af6cd4a124e2a9f8b5;hb=882884f6791da81b5ef562741458bc542c45edaf;hp=a792ec2872b382994286ed6e94bf4e0e64d78674;hpb=c3bf92bd87b770fd81631a3853f7f5bb1ac6a4e8;p=modules%2Fsmesh.git diff --git a/src/SMESH_I/SMESH_1D_Algo_i.cxx b/src/SMESH_I/SMESH_1D_Algo_i.cxx index a792ec287..56cb13fa9 100644 --- a/src/SMESH_I/SMESH_1D_Algo_i.cxx +++ b/src/SMESH_I/SMESH_1D_Algo_i.cxx @@ -17,7 +17,7 @@ // 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 +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // // // @@ -26,11 +26,12 @@ // Module : SMESH // $Header$ -using namespace std; #include "SMESH_1D_Algo_i.hxx" #include "utilities.h" +using namespace std; + //============================================================================= /*! * SMESH_1D_Algo_i::SMESH_1D_Algo_i @@ -59,3 +60,31 @@ SMESH_1D_Algo_i::~SMESH_1D_Algo_i() { MESSAGE( "SMESH_1D_Algo_i::~SMESH_1D_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) + */ +//================================================================================ +CORBA::Boolean SMESH_1D_Algo_i::IsDimSupported( SMESH::Dimension type ) +{ + return type == SMESH::DIM_1D; +} + + + + + + + + + + + + + +