Salome HOME
Fix for problem: SIGSEGV appears if to select group after opening "Edit Group" dialog...
[modules/smesh.git] / src / StdMeshers_I / StdMeshers_Propagation_i.cxx
1 //  SMESH SMESH_I : idl implementation based on 'SMESH' unit's calsses
2 //
3 //  Copyright (C) 2003  CEA
4 // 
5 //  This library is free software; you can redistribute it and/or 
6 //  modify it under the terms of the GNU Lesser General Public 
7 //  License as published by the Free Software Foundation; either 
8 //  version 2.1 of the License. 
9 // 
10 //  This library is distributed in the hope that it will be useful, 
11 //  but WITHOUT ANY WARRANTY; without even the implied warranty of 
12 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
13 //  Lesser General Public License for more details. 
14 // 
15 //  You should have received a copy of the GNU Lesser General Public 
16 //  License along with this library; if not, write to the Free Software 
17 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
18 // 
19 //  See http://www.salome-platform.org or email : webmaster.salome@opencascade.org
20 //
21 //
22 //
23 //  File   : StdMeshers_Propagation_i.cxx
24 //  Module : SMESH
25 //  $Header$
26
27 using namespace std;
28 #include "StdMeshers_Propagation_i.hxx"
29 #include "SMESH_Gen.hxx"
30
31 #include "Utils_CorbaException.hxx"
32 #include "utilities.h"
33
34 //=============================================================================
35 /*!
36  *  StdMeshers_Propagation_i::StdMeshers_Propagation_i
37  *
38  *  Constructor
39  */
40 //=============================================================================
41 StdMeshers_Propagation_i::StdMeshers_Propagation_i (PortableServer::POA_ptr thePOA,
42                                                     int                     theStudyId,
43                                                     ::SMESH_Gen*            theGenImpl )
44      : SALOME::GenericObj_i( thePOA ), 
45        SMESH_Hypothesis_i( thePOA )
46 {
47   MESSAGE( "StdMeshers_Propagation_i::StdMeshers_Propagation_i" );
48   myBaseImpl = new ::StdMeshers_Propagation(theGenImpl->GetANewId(),
49                                             theStudyId,
50                                             theGenImpl);
51 }
52
53 //=============================================================================
54 /*!
55  *  StdMeshers_Propagation_i::~StdMeshers_Propagation_i
56  *
57  *  Destructor
58  */
59 //=============================================================================
60 StdMeshers_Propagation_i::~StdMeshers_Propagation_i()
61 {
62   MESSAGE( "StdMeshers_Propagation_i::~StdMeshers_Propagation_i" );
63 }
64
65 //=============================================================================
66 /*!
67  *  StdMeshers_Propagation_i::GetImpl
68  *
69  *  Get implementation
70  */
71 //=============================================================================
72 ::StdMeshers_Propagation* StdMeshers_Propagation_i::GetImpl()
73 {
74   MESSAGE( "StdMeshers_Propagation_i::GetImpl" );
75   return ( ::StdMeshers_Propagation* )myBaseImpl;
76 }
77
78 //================================================================================
79 /*!
80  * \brief Verify whether hypothesis supports given entity type 
81   * \param type - dimension (see SMESH::Dimension enumeration)
82   * \retval CORBA::Boolean - TRUE if dimension is supported, FALSE otherwise
83  * 
84  * Verify whether hypothesis supports given entity type (see SMESH::Dimension enumeration)
85  */
86 //================================================================================  
87 CORBA::Boolean StdMeshers_Propagation_i::IsDimSupported( SMESH::Dimension type )
88 {
89   return type == SMESH::DIM_1D;
90 }
91