Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030 #include "StdMeshers_Prism_3D_i.hxx"
00031 #include "SMESH_Gen.hxx"
00032
00033 #include "Utils_CorbaException.hxx"
00034 #include "utilities.h"
00035
00036 using namespace std;
00037
00038
00042
00043
00044 StdMeshers_Prism_3D_i::StdMeshers_Prism_3D_i( PortableServer::POA_ptr thePOA,
00045 int theStudyId,
00046 ::SMESH_Gen* theGenImpl )
00047 : SALOME::GenericObj_i( thePOA ),
00048 SMESH_Hypothesis_i( thePOA ),
00049 SMESH_Algo_i( thePOA ),
00050 SMESH_3D_Algo_i( thePOA )
00051 {
00052 MESSAGE( "StdMeshers_Prism_3D_i::StdMeshers_Prism_3D_i" );
00053 myBaseImpl = new ::StdMeshers_Prism_3D( theGenImpl->GetANewId(),
00054 theStudyId,
00055 theGenImpl );
00056 }
00057
00058
00059 StdMeshers_Prism_3D_i::~StdMeshers_Prism_3D_i()
00060 {
00061 MESSAGE( "StdMeshers_Prism_3D_i::~StdMeshers_Prism_3D_i" );
00062 }
00063
00064
00065 ::StdMeshers_Prism_3D* StdMeshers_Prism_3D_i::GetImpl()
00066 {
00067 MESSAGE( "StdMeshers_Prism_3D_i::GetImpl" );
00068 return ( ::StdMeshers_Prism_3D* )myBaseImpl;
00069 }
00070
00071
00072
00076
00077
00078 StdMeshers_RadialPrism_3D_i::StdMeshers_RadialPrism_3D_i( PortableServer::POA_ptr thePOA,
00079 int theStudyId,
00080 ::SMESH_Gen* theGenImpl )
00081 : SALOME::GenericObj_i( thePOA ),
00082 SMESH_Hypothesis_i( thePOA ),
00083 SMESH_Algo_i( thePOA ),
00084 SMESH_3D_Algo_i( thePOA )
00085 {
00086 MESSAGE( "StdMeshers_RadialPrism_3D_i::StdMeshers_RadialPrism_3D_i" );
00087 myBaseImpl = new ::StdMeshers_RadialPrism_3D( theGenImpl->GetANewId(),
00088 theStudyId,
00089 theGenImpl );
00090 }
00091
00092
00093 StdMeshers_RadialPrism_3D_i::~StdMeshers_RadialPrism_3D_i()
00094 {
00095 MESSAGE( "StdMeshers_RadialPrism_3D_i::~StdMeshers_RadialPrism_3D_i" );
00096 }
00097
00098
00099 ::StdMeshers_RadialPrism_3D* StdMeshers_RadialPrism_3D_i::GetImpl()
00100 {
00101 MESSAGE( "StdMeshers_RadialPrism_3D_i::GetImpl" );
00102 return ( ::StdMeshers_RadialPrism_3D* )myBaseImpl;
00103 }
00104