Salome HOME
Merge from V6_3_BR 06/06/2011
[modules/smesh.git] / src / StdMeshers_I / StdMeshers_Projection_1D_2D_3D_i.cxx
1 // Copyright (C) 2007-2011  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 //  SMESH SMESH_I : idl implementation based on 'SMESH' unit's calsses
24 //  File   : StdMeshers_Projection_3D_i.cxx
25 //           Moved here from SMESH_Projection_3D_i.cxx
26 //  Author : Paul RASCLE, EDF
27 //  Module : SMESH
28 //  $Header$
29 //
30 #include "StdMeshers_Projection_1D_2D_3D_i.hxx"
31
32 #include "SMESH_Gen.hxx"
33
34 #include "Utils_CorbaException.hxx"
35 #include "utilities.h"
36
37 #include "StdMeshers_ObjRefUlils.hxx"
38
39 using namespace std;
40
41 //=============================================================================
42 /*!
43  *  StdMeshers_Projection_3D_i::StdMeshers_Projection_3D_i
44  */
45 //=============================================================================
46
47 StdMeshers_Projection_3D_i::StdMeshers_Projection_3D_i( PortableServer::POA_ptr thePOA,
48                                                         int                     theStudyId,
49                                                         ::SMESH_Gen*            theGenImpl )
50      : SALOME::GenericObj_i( thePOA ), 
51        SMESH_Hypothesis_i( thePOA ), 
52        SMESH_Algo_i( thePOA ),
53        SMESH_3D_Algo_i( thePOA )
54 {
55   MESSAGE( "StdMeshers_Projection_3D_i::StdMeshers_Projection_3D_i" );
56   myBaseImpl = new ::StdMeshers_Projection_3D( theGenImpl->GetANewId(),
57                                     theStudyId,
58                                     theGenImpl );
59 }
60 //-----------------------------------------------------------------------------
61
62 StdMeshers_Projection_3D_i::~StdMeshers_Projection_3D_i()
63 {
64   MESSAGE( "StdMeshers_Projection_3D_i::~StdMeshers_Projection_3D_i" );
65 }
66 //-----------------------------------------------------------------------------
67
68 ::StdMeshers_Projection_3D* StdMeshers_Projection_3D_i::GetImpl()
69 {
70   MESSAGE( "StdMeshers_Projection_3D_i::GetImpl" );
71   return ( ::StdMeshers_Projection_3D* )myBaseImpl;
72 }
73
74
75 //=============================================================================
76 /*!
77  *  StdMeshers_Projection_2D_i::StdMeshers_Projection_2D_i
78  */
79 //=============================================================================
80
81 StdMeshers_Projection_2D_i::StdMeshers_Projection_2D_i( PortableServer::POA_ptr thePOA,
82                                                         int                     theStudyId,
83                                                         ::SMESH_Gen*            theGenImpl )
84      : SALOME::GenericObj_i( thePOA ), 
85        SMESH_Hypothesis_i( thePOA ), 
86        SMESH_Algo_i( thePOA ),
87        SMESH_2D_Algo_i( thePOA )
88 {
89   MESSAGE( "StdMeshers_Projection_2D_i::StdMeshers_Projection_2D_i" );
90   myBaseImpl = new ::StdMeshers_Projection_2D( theGenImpl->GetANewId(),
91                                     theStudyId,
92                                     theGenImpl );
93 }
94 //-----------------------------------------------------------------------------
95
96 StdMeshers_Projection_2D_i::~StdMeshers_Projection_2D_i()
97 {
98   MESSAGE( "StdMeshers_Projection_2D_i::~StdMeshers_Projection_2D_i" );
99 }
100 //-----------------------------------------------------------------------------
101
102 ::StdMeshers_Projection_2D* StdMeshers_Projection_2D_i::GetImpl()
103 {
104   MESSAGE( "StdMeshers_Projection_2D_i::GetImpl" );
105   return ( ::StdMeshers_Projection_2D* )myBaseImpl;
106 }
107
108
109 //=============================================================================
110 /*!
111  *  StdMeshers_Projection_1D_i::StdMeshers_Projection_1D_i
112  */
113 //=============================================================================
114
115 StdMeshers_Projection_1D_i::StdMeshers_Projection_1D_i( PortableServer::POA_ptr thePOA,
116                                                         int                     theStudyId,
117                                                         ::SMESH_Gen*            theGenImpl )
118      : SALOME::GenericObj_i( thePOA ), 
119        SMESH_Hypothesis_i( thePOA ), 
120        SMESH_Algo_i( thePOA ),
121        SMESH_1D_Algo_i( thePOA )
122 {
123   MESSAGE( "StdMeshers_Projection_1D_i::StdMeshers_Projection_1D_i" );
124   myBaseImpl = new ::StdMeshers_Projection_1D( theGenImpl->GetANewId(),
125                                     theStudyId,
126                                     theGenImpl );
127 }
128 //-----------------------------------------------------------------------------
129
130 StdMeshers_Projection_1D_i::~StdMeshers_Projection_1D_i()
131 {
132   MESSAGE( "StdMeshers_Projection_1D_i::~StdMeshers_Projection_1D_i" );
133 }
134 //-----------------------------------------------------------------------------
135
136 ::StdMeshers_Projection_1D* StdMeshers_Projection_1D_i::GetImpl()
137 {
138   MESSAGE( "StdMeshers_Projection_1D_i::GetImpl" );
139   return ( ::StdMeshers_Projection_1D* )myBaseImpl;
140 }