]> SALOME platform Git repositories - plugins/gmshplugin.git/blob - src/GMSHPlugin/GMSHPlugin_GMSH_2D_i.cxx
Salome HOME
1edff55ed4dac78752fdc8f25973ea6968cf964b
[plugins/gmshplugin.git] / src / GMSHPlugin / GMSHPlugin_GMSH_2D_i.cxx
1 // Copyright (C) 2012-2013  ALNEOS
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.alneos.com/ or email : contact@alneos.fr
18 //
19 #include "GMSHPlugin_GMSH_2D_i.hxx"
20 #include "SMESH_Gen.hxx"
21
22 #include "Utils_CorbaException.hxx"
23 #include "utilities.h"
24
25 using namespace std;
26
27 //=============================================================================
28 /*!
29  *  GMSHPlugin_GMSH_2D_i::GMSHPlugin_GMSH_2D_i
30  *
31  *  Constructor
32  */
33 //=============================================================================
34
35 GMSHPlugin_GMSH_2D_i::GMSHPlugin_GMSH_2D_i( PortableServer::POA_ptr thePOA,
36                                                     int                     theStudyId,
37                                                     ::SMESH_Gen*            theGenImpl )
38      : SALOME::GenericObj_i( thePOA ), 
39        SMESH_Hypothesis_i( thePOA ), 
40        SMESH_Algo_i( thePOA ),
41        SMESH_2D_Algo_i( thePOA )
42 {
43   MESSAGE( "GMSHPlugin_GMSH_2D_i::GMSHPlugin_GMSH_2D_i" );
44   myBaseImpl = new ::GMSHPlugin_GMSH_2D( theGenImpl->GetANewId(),
45                                              theStudyId,
46                                              theGenImpl );
47 }
48
49 //=============================================================================
50 /*!
51  *  GMSHPlugin_GMSH_2D_i::~GMSHPlugin_GMSH_2D_i
52  *
53  *  Destructor
54  */
55 //=============================================================================
56
57 GMSHPlugin_GMSH_2D_i::~GMSHPlugin_GMSH_2D_i()
58 {
59   MESSAGE( "GMSHPlugin_GMSH_2D_i::~GMSHPlugin_GMSH_2D_i" );
60 }
61
62 //=============================================================================
63 /*!
64  *  GMSHPlugin_GMSH_2D_i::GetImpl
65  *
66  *  Get implementation
67  */
68 //=============================================================================
69
70 ::GMSHPlugin_GMSH_2D* GMSHPlugin_GMSH_2D_i::GetImpl()
71 {
72   MESSAGE( "GMSHPlugin_GMSH_2D_i::GetImpl" );
73   return ( ::GMSHPlugin_GMSH_2D* )myBaseImpl;
74 }