X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=src%2FSMESH_I%2FSMESH_2D_Algo_i.hxx;h=58664c9cfbc4a4584a5408f4d15c4029836310c2;hp=a63106c5de0ba5308e3c739a96bca74dc0119526;hb=4f27e7392a109bdc465b943b8d92d969e93f129c;hpb=bef9beee88cac57394b8dc3bc914381c1a2fff83 diff --git a/src/SMESH_I/SMESH_2D_Algo_i.hxx b/src/SMESH_I/SMESH_2D_Algo_i.hxx index a63106c5d..58664c9cf 100644 --- a/src/SMESH_I/SMESH_2D_Algo_i.hxx +++ b/src/SMESH_I/SMESH_2D_Algo_i.hxx @@ -1,11 +1,30 @@ -//============================================================================= -// File : SMESH_2D_Algo_i.hxx -// Created : sam mai 18 09:23:57 CEST 2002 -// Author : Paul RASCLE, EDF -// Project : SALOME -// Copyright : EDF 2002 -// $Header$ -//============================================================================= +// SMESH SMESH_I : idl implementation based on 'SMESH' unit's calsses +// +// Copyright (C) 2003 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, +// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS +// +// This library is free software; you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public +// License as published by the Free Software Foundation; either +// version 2.1 of the License. +// +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// 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 +// +// +// +// File : SMESH_2D_Algo_i.hxx +// Author : Paul RASCLE, EDF +// Module : SMESH +// $Header$ #ifndef _SMESH_2D_ALGO_I_HXX_ #define _SMESH_2D_ALGO_I_HXX_ @@ -15,21 +34,23 @@ #include "SMESH_Algo_i.hxx" -#include "SMESH_2D_Algo.hxx" - +// ====================================================== +// Generic 2D algorithm +// ====================================================== class SMESH_2D_Algo_i: - public POA_SMESH::SMESH_2D_Algo, - public SMESH_Algo_i + public virtual POA_SMESH::SMESH_2D_Algo, + public virtual SMESH_Algo_i { -public: - SMESH_2D_Algo_i(); - - virtual ~SMESH_2D_Algo_i(); - protected: - virtual void SetImpl(::SMESH_2D_Algo* impl); + // Constructor : placed in protected section to prohibit creation of generic class instance + SMESH_2D_Algo_i( PortableServer::POA_ptr thePOA ); - ::SMESH_2D_Algo* _impl; +public: + // Destructor + virtual ~SMESH_2D_Algo_i(); + + // Verify whether algorithm supports given entity type + CORBA::Boolean IsDimSupported( SMESH::Dimension type ); }; #endif