Salome HOME
61c2f2f747cf01d77aef5603bbc751b7aa34ce1d
[plugins/gmshplugin.git] / src / GMSHPlugin / GMSHPlugin_Hypothesis_2D_i.cxx
1 // Copyright (C) 2012-2015  ALNEOS
2 // Copyright (C) 2016-2023  EDF
3 //
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either
7 // version 2.1 of the License, or (at your option) any later version.
8 //
9 // This library is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public
15 // License along with this library; if not, write to the Free Software
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.alneos.com/ or email : contact@alneos.fr
19 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 //
21 #include "GMSHPlugin_Hypothesis_2D_i.hxx"
22 #include "SMESH_Gen.hxx"
23 #include "SMESH_PythonDump.hxx"
24
25 #include "Utils_CorbaException.hxx"
26 #include "utilities.h"
27
28 using namespace std;
29
30 //=============================================================================
31 /*!
32  *  GMSHPlugin_Hypothesis_2D_i::GMSHPlugin_Hypothesis_2D_i
33  *
34  *  Constructor
35  */
36 //=============================================================================
37 GMSHPlugin_Hypothesis_2D_i::
38 GMSHPlugin_Hypothesis_2D_i (PortableServer::POA_ptr thePOA,
39                               ::SMESH_Gen*            theGenImpl)
40   : SALOME::GenericObj_i( thePOA ),
41     SMESH_Hypothesis_i( thePOA ),
42     GMSHPlugin_Hypothesis_i( thePOA, theGenImpl )
43 {
44   MESSAGE( "GMSHPlugin_Hypothesis_2D_i::GMSHPlugin_Hypothesis_2D_i" );
45   if (myBaseImpl)
46     delete (::GMSHPlugin_Hypothesis*)myBaseImpl;
47   myBaseImpl = new ::GMSHPlugin_Hypothesis_2D (theGenImpl->GetANewId(),
48                                                  theGenImpl);
49 }
50
51 //=============================================================================
52 /*!
53  *  GMSHPlugin_Hypothesis_2D_i::~GMSHPlugin_Hypothesis_2D_i
54  *
55  *  Destructor
56  */
57 //=============================================================================
58 GMSHPlugin_Hypothesis_2D_i::~GMSHPlugin_Hypothesis_2D_i()
59 {
60   MESSAGE( "GMSHPlugin_Hypothesis_2D_i::~GMSHPlugin_Hypothesis_2D_i" );
61 }
62
63 //================================================================================
64 /*!
65  * \brief Verify whether hypothesis supports given entity type 
66   * \param type - dimension (see SMESH::Dimension enumeration)
67   * \retval CORBA::Boolean - TRUE if dimension is supported, FALSE otherwise
68  * 
69  * Verify whether hypothesis supports given entity type (see SMESH::Dimension enumeration)
70  */
71 //================================================================================  
72 CORBA::Boolean GMSHPlugin_Hypothesis_2D_i::IsDimSupported( SMESH::Dimension type )
73 {
74   return type == SMESH::DIM_2D;
75 }