Salome HOME
updated copyright message
[plugins/hexablockplugin.git] / src / HEXABLOCKPlugin / HEXABLOCKPlugin_HEXABLOCK_i.cxx
1 // Copyright (C) 2009-2023  CEA/DEN, EDF R&D
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   : HEXABLOCKPlugin_HEXABLOCK_i.cxx
22 //  Author : Lioka RAZAFINDRAZAKA (CEA)
23 //  Module : HEXABLOCKPlugin
24 //  $Header$
25 //
26 #include "HEXABLOCKPlugin_HEXABLOCK_i.hxx"
27 #include "SMESH_Gen.hxx"
28 #include "HEXABLOCKPlugin_HEXABLOCK.hxx"
29
30 #include "utilities.h"
31 #include "hexa_base.hxx"
32
33 using namespace std;
34
35 //=============================================================================
36 /*!
37  *  HEXABLOCKPlugin_HEXABLOCK_i::HEXABLOCKPlugin_HEXABLOCK_i
38  *
39  *  Constructor
40  */
41 //=============================================================================
42
43 HEXABLOCKPlugin_HEXABLOCK_i::HEXABLOCKPlugin_HEXABLOCK_i (PortableServer::POA_ptr thePOA,
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( "HEXABLOCKPlugin_HEXABLOCK_i::HEXABLOCKPlugin_HEXABLOCK_i" );
51   myBaseImpl = new ::HEXABLOCKPlugin_HEXABLOCK (theGenImpl->GetANewId(),
52                                                 theGenImpl );
53 }
54
55 //=============================================================================
56 /*!
57  *  HEXABLOCKPlugin_HEXABLOCK_i::~HEXABLOCKPlugin_HEXABLOCK_i
58  *
59  *  Destructor
60  */
61 //=============================================================================
62
63 HEXABLOCKPlugin_HEXABLOCK_i::~HEXABLOCKPlugin_HEXABLOCK_i()
64 {
65   MESSAGE( "HEXABLOCKPlugin_HEXABLOCK_i::~HEXABLOCKPlugin_HEXABLOCK_i" );
66 }
67
68 //=============================================================================
69 /*!
70  *  HEXABLOCKPlugin_HEXABLOCK_i::GetImpl
71  *
72  *  Get implementation
73  */
74 //=============================================================================
75
76 ::HEXABLOCKPlugin_HEXABLOCK* HEXABLOCKPlugin_HEXABLOCK_i::GetImpl()
77 {
78   MESSAGE( "HEXABLOCKPlugin_HEXABLOCK_i::GetImpl" );
79   return ( ::HEXABLOCKPlugin_HEXABLOCK* )myBaseImpl;
80 }
81