]> SALOME platform Git repositories - plugins/gmshplugin.git/blob - src/GMSHPlugin/GMSHPlugin_Hypothesis_2D_i.cxx
Salome HOME
Update copyrights
[plugins/gmshplugin.git] / src / GMSHPlugin / GMSHPlugin_Hypothesis_2D_i.cxx
1 // Copyright (C) 2012-2015  ALNEOS
2 // Copyright (C) 2016-2019  EDF R&D
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.
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 //
20 #include "GMSHPlugin_Hypothesis_2D_i.hxx"
21 #include "SMESH_Gen.hxx"
22 #include "SMESH_PythonDump.hxx"
23
24 #include "Utils_CorbaException.hxx"
25 #include "utilities.h"
26
27 using namespace std;
28
29 //=============================================================================
30 /*!
31  *  GMSHPlugin_Hypothesis_2D_i::GMSHPlugin_Hypothesis_2D_i
32  *
33  *  Constructor
34  */
35 //=============================================================================
36 GMSHPlugin_Hypothesis_2D_i::
37 GMSHPlugin_Hypothesis_2D_i (PortableServer::POA_ptr thePOA,
38                               ::SMESH_Gen*            theGenImpl)
39   : SALOME::GenericObj_i( thePOA ),
40     SMESH_Hypothesis_i( thePOA ),
41     GMSHPlugin_Hypothesis_i( thePOA, theGenImpl )
42 {
43   MESSAGE( "GMSHPlugin_Hypothesis_2D_i::GMSHPlugin_Hypothesis_2D_i" );
44   if (myBaseImpl)
45     delete (::GMSHPlugin_Hypothesis*)myBaseImpl;
46   myBaseImpl = new ::GMSHPlugin_Hypothesis_2D (theGenImpl->GetANewId(),
47                                                  theGenImpl);
48 }
49
50 //=============================================================================
51 /*!
52  *  GMSHPlugin_Hypothesis_2D_i::~GMSHPlugin_Hypothesis_2D_i
53  *
54  *  Destructor
55  */
56 //=============================================================================
57 GMSHPlugin_Hypothesis_2D_i::~GMSHPlugin_Hypothesis_2D_i()
58 {
59   MESSAGE( "GMSHPlugin_Hypothesis_2D_i::~GMSHPlugin_Hypothesis_2D_i" );
60 }
61
62 //================================================================================
63 /*!
64  * \brief Verify whether hypothesis supports given entity type 
65   * \param type - dimension (see SMESH::Dimension enumeration)
66   * \retval CORBA::Boolean - TRUE if dimension is supported, FALSE otherwise
67  * 
68  * Verify whether hypothesis supports given entity type (see SMESH::Dimension enumeration)
69  */
70 //================================================================================  
71 CORBA::Boolean GMSHPlugin_Hypothesis_2D_i::IsDimSupported( SMESH::Dimension type )
72 {
73   return type == SMESH::DIM_2D;
74 }