]> SALOME platform Git repositories - plugins/hexablockplugin.git/blob - src/HEXABLOCKPlugin/HEXABLOCKPlugin_HEXABLOCK_i.cxx
Salome HOME
0023299: [CEA] Finalize multi-study removal
[plugins/hexablockplugin.git] / src / HEXABLOCKPlugin / HEXABLOCKPlugin_HEXABLOCK_i.cxx
1 // Copyright (C) 2009-2016  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 #ifdef _DEBUG_
34 static int MYDEBUG = HEXA_NS::on_debug ();
35 #else
36 static int MYDEBUG = 0;
37 #endif
38
39 using namespace std;
40
41 //=============================================================================
42 /*!
43  *  HEXABLOCKPlugin_HEXABLOCK_i::HEXABLOCKPlugin_HEXABLOCK_i
44  *
45  *  Constructor
46  */
47 //=============================================================================
48
49 HEXABLOCKPlugin_HEXABLOCK_i::HEXABLOCKPlugin_HEXABLOCK_i (PortableServer::POA_ptr thePOA,
50                                                           ::SMESH_Gen*            theGenImpl )
51      : SALOME::GenericObj_i( thePOA ), 
52        SMESH_Hypothesis_i( thePOA ), 
53        SMESH_Algo_i( thePOA ),
54        SMESH_3D_Algo_i( thePOA )
55 {
56   if(MYDEBUG) MESSAGE( "HEXABLOCKPlugin_HEXABLOCK_i::HEXABLOCKPlugin_HEXABLOCK_i" );
57   myBaseImpl = new ::HEXABLOCKPlugin_HEXABLOCK (theGenImpl->GetANewId(),
58                                                 theGenImpl );
59 }
60
61 //=============================================================================
62 /*!
63  *  HEXABLOCKPlugin_HEXABLOCK_i::~HEXABLOCKPlugin_HEXABLOCK_i
64  *
65  *  Destructor
66  */
67 //=============================================================================
68
69 HEXABLOCKPlugin_HEXABLOCK_i::~HEXABLOCKPlugin_HEXABLOCK_i()
70 {
71   if(MYDEBUG) MESSAGE( "HEXABLOCKPlugin_HEXABLOCK_i::~HEXABLOCKPlugin_HEXABLOCK_i" );
72 }
73
74 //=============================================================================
75 /*!
76  *  HEXABLOCKPlugin_HEXABLOCK_i::GetImpl
77  *
78  *  Get implementation
79  */
80 //=============================================================================
81
82 ::HEXABLOCKPlugin_HEXABLOCK* HEXABLOCKPlugin_HEXABLOCK_i::GetImpl()
83 {
84   if(MYDEBUG) MESSAGE( "HEXABLOCKPlugin_HEXABLOCK_i::GetImpl" );
85   return ( ::HEXABLOCKPlugin_HEXABLOCK* )myBaseImpl;
86 }
87