00001 // Copyright (C) 2007-2011 CEA/DEN, EDF R&D, OPEN CASCADE 00002 // 00003 // This library is free software; you can redistribute it and/or 00004 // modify it under the terms of the GNU Lesser General Public 00005 // License as published by the Free Software Foundation; either 00006 // version 2.1 of the License. 00007 // 00008 // This library is distributed in the hope that it will be useful, 00009 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00010 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00011 // Lesser General Public License for more details. 00012 // 00013 // You should have received a copy of the GNU Lesser General Public 00014 // License along with this library; if not, write to the Free Software 00015 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00016 // 00017 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com 00018 // 00019 00020 // SMESH SMESH_I : idl implementation based on 'SMESH' unit's classes 00021 // File : StdMeshers_NumberOfLayers2D_i.cxx 00022 // Author : Edward AGAPOV 00023 // Module : SMESH 00024 // $Header: /home/server/cvs/SMESH/SMESH_SRC/src/StdMeshers_I/Attic/StdMeshers_NumberOfLayers2D_i.cxx,v 1.1.2.1.14.1.8.1 2011-06-02 05:57:35 vsr Exp $ 00025 // 00026 #include "StdMeshers_NumberOfLayers2D_i.hxx" 00027 00028 #include "utilities.h" 00029 00030 //using namespace std; 00031 00032 //============================================================================= 00038 //============================================================================= 00039 00040 StdMeshers_NumberOfLayers2D_i::StdMeshers_NumberOfLayers2D_i 00041 (PortableServer::POA_ptr thePOA, 00042 int theStudyId, 00043 ::SMESH_Gen* theGenImpl) 00044 : StdMeshers_NumberOfLayers_i(thePOA,theStudyId,theGenImpl), 00045 SMESH_Hypothesis_i( thePOA ) 00046 { 00047 MESSAGE("StdMeshers_NumberOfLayers2D_i::StdMeshers_NumberOfLayers2D_i"); 00048 myBaseImpl = new ::StdMeshers_NumberOfLayers2D(theGenImpl->GetANewId(), 00049 theStudyId, 00050 theGenImpl); 00051 } 00052 00053 //============================================================================= 00059 //============================================================================= 00060 00061 StdMeshers_NumberOfLayers2D_i::~StdMeshers_NumberOfLayers2D_i() 00062 { 00063 MESSAGE( "StdMeshers_NumberOfLayers2D_i::~StdMeshers_NumberOfLayers2D_i" ); 00064 } 00065 00066 //============================================================================= 00072 //============================================================================= 00073 00074 ::StdMeshers_NumberOfLayers2D* StdMeshers_NumberOfLayers2D_i::GetImpl() 00075 { 00076 return ( ::StdMeshers_NumberOfLayers2D* )myBaseImpl; 00077 } 00078 00079 //================================================================================ 00087 //================================================================================ 00088 CORBA::Boolean StdMeshers_NumberOfLayers2D_i::IsDimSupported( SMESH::Dimension type ) 00089 { 00090 return type == SMESH::DIM_2D; 00091 } 00092