Salome HOME
Copyright update: 2016
[modules/smesh.git] / src / StdMeshers_I / StdMeshers_UseExisting_1D2D_i.cxx
1 // Copyright (C) 2007-2016  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 calsses
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                                                  int                     theStudyId,
42                                                  ::SMESH_Gen*            theGenImpl )
43      : SALOME::GenericObj_i( thePOA ), 
44        SMESH_Hypothesis_i( thePOA ), 
45        SMESH_Algo_i( thePOA ),
46        SMESH_1D_Algo_i( thePOA )
47 {
48   MESSAGE( "StdMeshers_UseExisting_1D_i::StdMeshers_UseExisting_1D_i" );
49   myBaseImpl = new ::StdMeshers_UseExisting_1D( theGenImpl->GetANewId(),
50                                                 theStudyId,
51                                                 theGenImpl );
52 }
53 //-----------------------------------------------------------------------------
54
55 StdMeshers_UseExisting_1D_i::~StdMeshers_UseExisting_1D_i()
56 {
57   MESSAGE( "StdMeshers_UseExisting_1D_i::~StdMeshers_UseExisting_1D_i" );
58 }
59 //-----------------------------------------------------------------------------
60
61 ::StdMeshers_UseExisting_1D* StdMeshers_UseExisting_1D_i::GetImpl()
62 {
63   MESSAGE( "StdMeshers_UseExisting_1D_i::GetImpl" );
64   return ( ::StdMeshers_UseExisting_1D* )myBaseImpl;
65 }
66
67
68 //=============================================================================
69 /*!
70  *  StdMeshers_UseExisting_2D_i::StdMeshers_UseExisting_2D_i
71  */
72 //=============================================================================
73
74 StdMeshers_UseExisting_2D_i::StdMeshers_UseExisting_2D_i
75                                                ( PortableServer::POA_ptr thePOA,
76                                                  int                     theStudyId,
77                                                  ::SMESH_Gen*            theGenImpl )
78      : SALOME::GenericObj_i( thePOA ), 
79        SMESH_Hypothesis_i( thePOA ), 
80        SMESH_Algo_i( thePOA ),
81        SMESH_2D_Algo_i( thePOA )
82 {
83   MESSAGE( "StdMeshers_UseExisting_2D_i::StdMeshers_UseExisting_2D_i" );
84   myBaseImpl = new ::StdMeshers_UseExisting_2D( theGenImpl->GetANewId(),
85                                                 theStudyId,
86                                                 theGenImpl );
87 }
88 //-----------------------------------------------------------------------------
89
90 StdMeshers_UseExisting_2D_i::~StdMeshers_UseExisting_2D_i()
91 {
92   MESSAGE( "StdMeshers_UseExisting_2D_i::~StdMeshers_UseExisting_2D_i" );
93 }
94 //-----------------------------------------------------------------------------
95
96 ::StdMeshers_UseExisting_2D* StdMeshers_UseExisting_2D_i::GetImpl()
97 {
98   MESSAGE( "StdMeshers_UseExisting_2D_i::GetImpl" );
99   return ( ::StdMeshers_UseExisting_2D* )myBaseImpl;
100 }