]> SALOME platform Git repositories - plugins/gmshplugin.git/blob - src/GMSHPlugin/GMSHPlugin_GMSH_2D_i.cxx
Salome HOME
Migrate on CMake and Qt 5
[plugins/gmshplugin.git] / src / GMSHPlugin / GMSHPlugin_GMSH_2D_i.cxx
1 // Copyright (C) 2012-2015  ALNEOS
2 // Copyright (C) 2016  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_GMSH_2D_i.hxx"
21 #include "SMESH_Gen.hxx"
22
23 #include "Utils_CorbaException.hxx"
24 #include "utilities.h"
25
26 using namespace std;
27
28 //=============================================================================
29 /*!
30  *  GMSHPlugin_GMSH_2D_i::GMSHPlugin_GMSH_2D_i
31  *
32  *  Constructor
33  */
34 //=============================================================================
35
36 GMSHPlugin_GMSH_2D_i::GMSHPlugin_GMSH_2D_i( PortableServer::POA_ptr thePOA,
37                                                     int                     theStudyId,
38                                                     ::SMESH_Gen*            theGenImpl )
39      : SALOME::GenericObj_i( thePOA ), 
40        SMESH_Hypothesis_i( thePOA ), 
41        SMESH_Algo_i( thePOA ),
42        SMESH_2D_Algo_i( thePOA )
43 {
44   MESSAGE( "GMSHPlugin_GMSH_2D_i::GMSHPlugin_GMSH_2D_i" );
45   myBaseImpl = new ::GMSHPlugin_GMSH_2D( theGenImpl->GetANewId(),
46                                              theStudyId,
47                                              theGenImpl );
48 }
49
50 //=============================================================================
51 /*!
52  *  GMSHPlugin_GMSH_2D_i::~GMSHPlugin_GMSH_2D_i
53  *
54  *  Destructor
55  */
56 //=============================================================================
57
58 GMSHPlugin_GMSH_2D_i::~GMSHPlugin_GMSH_2D_i()
59 {
60   MESSAGE( "GMSHPlugin_GMSH_2D_i::~GMSHPlugin_GMSH_2D_i" );
61 }
62
63 //=============================================================================
64 /*!
65  *  GMSHPlugin_GMSH_2D_i::GetImpl
66  *
67  *  Get implementation
68  */
69 //=============================================================================
70
71 ::GMSHPlugin_GMSH_2D* GMSHPlugin_GMSH_2D_i::GetImpl()
72 {
73   MESSAGE( "GMSHPlugin_GMSH_2D_i::GetImpl" );
74   return ( ::GMSHPlugin_GMSH_2D* )myBaseImpl;
75 }