Salome HOME
a86b40f1fda3d9535ef81bbabc70c92c85f948a5
[modules/smesh.git] / src / StdMeshers_I / StdMeshers_Projection_1D_2D_3D_i.cxx
1 // Copyright (C) 2007-2016  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, or (at your option) any later version.
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 //  File   : StdMeshers_Projection_1D_2D_3D_i.cxx
23 //  Module : SMESH
24 //
25 #include "StdMeshers_Projection_1D_2D_3D_i.hxx"
26
27 #include "SMESH_Gen.hxx"
28
29 #include "Utils_CorbaException.hxx"
30 #include "utilities.h"
31
32 #include "StdMeshers_ObjRefUlils.hxx"
33
34 using namespace std;
35
36 //=============================================================================
37 /*!
38  *  StdMeshers_Projection_3D_i::StdMeshers_Projection_3D_i
39  */
40 //=============================================================================
41
42 StdMeshers_Projection_3D_i::StdMeshers_Projection_3D_i( PortableServer::POA_ptr thePOA,
43                                                         int                     theStudyId,
44                                                         ::SMESH_Gen*            theGenImpl )
45      : SALOME::GenericObj_i( thePOA ), 
46        SMESH_Hypothesis_i( thePOA ), 
47        SMESH_Algo_i( thePOA ),
48        SMESH_3D_Algo_i( thePOA )
49 {
50   MESSAGE( "StdMeshers_Projection_3D_i::StdMeshers_Projection_3D_i" );
51   myBaseImpl = new ::StdMeshers_Projection_3D( theGenImpl->GetANewId(),
52                                     theStudyId,
53                                     theGenImpl );
54 }
55 //-----------------------------------------------------------------------------
56
57 StdMeshers_Projection_3D_i::~StdMeshers_Projection_3D_i()
58 {
59   MESSAGE( "StdMeshers_Projection_3D_i::~StdMeshers_Projection_3D_i" );
60 }
61 //-----------------------------------------------------------------------------
62
63 ::StdMeshers_Projection_3D* StdMeshers_Projection_3D_i::GetImpl()
64 {
65   MESSAGE( "StdMeshers_Projection_3D_i::GetImpl" );
66   return ( ::StdMeshers_Projection_3D* )myBaseImpl;
67 }
68
69 //================================================================================
70 /*!
71  * \brief Return true if the algorithm is applicable to a shape
72  */
73 //================================================================================
74
75 CORBA::Boolean StdMeshers_Projection_3D_i::IsApplicable(const TopoDS_Shape &S,
76                                                         CORBA::Boolean toCheckAll)
77 {
78   return ::StdMeshers_Projection_3D::IsApplicable( S, toCheckAll );
79 }
80
81 //=============================================================================
82 /*!
83  *  StdMeshers_Projection_2D_i::StdMeshers_Projection_2D_i
84  */
85 //=============================================================================
86
87 StdMeshers_Projection_2D_i::StdMeshers_Projection_2D_i( PortableServer::POA_ptr thePOA,
88                                                         int                     theStudyId,
89                                                         ::SMESH_Gen*            theGenImpl )
90      : SALOME::GenericObj_i( thePOA ), 
91        SMESH_Hypothesis_i( thePOA ), 
92        SMESH_Algo_i( thePOA ),
93        SMESH_2D_Algo_i( thePOA )
94 {
95   MESSAGE( "StdMeshers_Projection_2D_i::StdMeshers_Projection_2D_i" );
96   myBaseImpl = new ::StdMeshers_Projection_2D( theGenImpl->GetANewId(),
97                                     theStudyId,
98                                     theGenImpl );
99 }
100 //-----------------------------------------------------------------------------
101
102 StdMeshers_Projection_2D_i::~StdMeshers_Projection_2D_i()
103 {
104   MESSAGE( "StdMeshers_Projection_2D_i::~StdMeshers_Projection_2D_i" );
105 }
106 //-----------------------------------------------------------------------------
107
108 ::StdMeshers_Projection_2D* StdMeshers_Projection_2D_i::GetImpl()
109 {
110   MESSAGE( "StdMeshers_Projection_2D_i::GetImpl" );
111   return ( ::StdMeshers_Projection_2D* )myBaseImpl;
112 }
113
114
115 //=============================================================================
116 /*!
117  *  StdMeshers_Projection_1D2D_i::StdMeshers_Projection_1D2D_i
118  */
119 //=============================================================================
120
121 StdMeshers_Projection_1D2D_i::StdMeshers_Projection_1D2D_i( PortableServer::POA_ptr thePOA,
122                                                             int                     theStudyId,
123                                                             ::SMESH_Gen*            theGenImpl )
124      : SALOME::GenericObj_i( thePOA ),
125        SMESH_Hypothesis_i( thePOA ),
126        SMESH_Algo_i( thePOA ),
127        SMESH_2D_Algo_i( thePOA )
128 {
129   MESSAGE( "StdMeshers_Projection_1D2D_i::StdMeshers_Projection_1D2D_i" );
130   myBaseImpl = new ::StdMeshers_Projection_1D2D( theGenImpl->GetANewId(),
131                                                  theStudyId,
132                                                  theGenImpl );
133 }
134 //-----------------------------------------------------------------------------
135
136 StdMeshers_Projection_1D2D_i::~StdMeshers_Projection_1D2D_i()
137 {
138   MESSAGE( "StdMeshers_Projection_1D2D_i::~StdMeshers_Projection_1D2D_i" );
139 }
140 //-----------------------------------------------------------------------------
141
142 ::StdMeshers_Projection_1D2D* StdMeshers_Projection_1D2D_i::GetImpl()
143 {
144   MESSAGE( "StdMeshers_Projection_1D2D_i::GetImpl" );
145   return ( ::StdMeshers_Projection_1D2D* )myBaseImpl;
146 }
147
148
149 //=============================================================================
150 /*!
151  *  StdMeshers_Projection_1D_i::StdMeshers_Projection_1D_i
152  */
153 //=============================================================================
154
155 StdMeshers_Projection_1D_i::StdMeshers_Projection_1D_i( PortableServer::POA_ptr thePOA,
156                                                         int                     theStudyId,
157                                                         ::SMESH_Gen*            theGenImpl )
158      : SALOME::GenericObj_i( thePOA ), 
159        SMESH_Hypothesis_i( thePOA ), 
160        SMESH_Algo_i( thePOA ),
161        SMESH_1D_Algo_i( thePOA )
162 {
163   MESSAGE( "StdMeshers_Projection_1D_i::StdMeshers_Projection_1D_i" );
164   myBaseImpl = new ::StdMeshers_Projection_1D( theGenImpl->GetANewId(),
165                                     theStudyId,
166                                     theGenImpl );
167 }
168 //-----------------------------------------------------------------------------
169
170 StdMeshers_Projection_1D_i::~StdMeshers_Projection_1D_i()
171 {
172   MESSAGE( "StdMeshers_Projection_1D_i::~StdMeshers_Projection_1D_i" );
173 }
174 //-----------------------------------------------------------------------------
175
176 ::StdMeshers_Projection_1D* StdMeshers_Projection_1D_i::GetImpl()
177 {
178   MESSAGE( "StdMeshers_Projection_1D_i::GetImpl" );
179   return ( ::StdMeshers_Projection_1D* )myBaseImpl;
180 }