Salome HOME
Update copyrights
[modules/smesh.git] / src / StdMeshers_I / StdMeshers_UseExisting_1D2D_i.cxx
1 // Copyright (C) 2007-2019  CEA/DEN, EDF R&D, OPEN CASCADE
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, or (at your option) any later version.
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.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 //  SMESH SMESH_I : idl implementation based on 'SMESH' unit's classes
21 //  File   : StdMeshers_Projection_3D_i.cxx
22 //           Moved here from SMESH_Projection_3D_i.cxx
23 //  Author : Paul RASCLE, EDF
24 //  Module : SMESH
25 //  $Header$
26 //
27 #include "StdMeshers_UseExisting_1D2D_i.hxx"
28
29 #include "SMESH_Gen.hxx"
30
31 #include "utilities.h"
32
33 //=============================================================================
34 /*!
35  *  StdMeshers_UseExisting_1D_i::StdMeshers_UseExisting_1D_i
36  */
37 //=============================================================================
38
39 StdMeshers_UseExisting_1D_i::StdMeshers_UseExisting_1D_i
40                                                ( PortableServer::POA_ptr thePOA,
41                                                  ::SMESH_Gen*            theGenImpl )
42      : SALOME::GenericObj_i( thePOA ), 
43        SMESH_Hypothesis_i( thePOA ), 
44        SMESH_Algo_i( thePOA ),
45        SMESH_1D_Algo_i( thePOA )
46 {
47   myBaseImpl = new ::StdMeshers_UseExisting_1D( theGenImpl->GetANewId(),
48                                                 theGenImpl );
49 }
50 //-----------------------------------------------------------------------------
51
52 StdMeshers_UseExisting_1D_i::~StdMeshers_UseExisting_1D_i()
53 {
54 }
55 //-----------------------------------------------------------------------------
56
57 ::StdMeshers_UseExisting_1D* StdMeshers_UseExisting_1D_i::GetImpl()
58 {
59   return ( ::StdMeshers_UseExisting_1D* )myBaseImpl;
60 }
61
62
63 //=============================================================================
64 /*!
65  *  StdMeshers_UseExisting_2D_i::StdMeshers_UseExisting_2D_i
66  */
67 //=============================================================================
68
69 StdMeshers_UseExisting_2D_i::StdMeshers_UseExisting_2D_i
70                                                ( PortableServer::POA_ptr thePOA,
71                                                  ::SMESH_Gen*            theGenImpl )
72      : SALOME::GenericObj_i( thePOA ), 
73        SMESH_Hypothesis_i( thePOA ), 
74        SMESH_Algo_i( thePOA ),
75        SMESH_2D_Algo_i( thePOA )
76 {
77   myBaseImpl = new ::StdMeshers_UseExisting_2D( theGenImpl->GetANewId(),
78                                                 theGenImpl );
79 }
80 //-----------------------------------------------------------------------------
81
82 StdMeshers_UseExisting_2D_i::~StdMeshers_UseExisting_2D_i()
83 {
84 }
85 //-----------------------------------------------------------------------------
86
87 ::StdMeshers_UseExisting_2D* StdMeshers_UseExisting_2D_i::GetImpl()
88 {
89   return ( ::StdMeshers_UseExisting_2D* )myBaseImpl;
90 }