Salome HOME
Merge from V6_main_20120808 08Aug12
[plugins/hexablockplugin.git] / src / HEXABLOCKPlugin / HEXABLOCKPlugin_HEXABLOCK_i.cxx
1 // Copyright (C) 2009-2012  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.
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
32 #ifdef _DEBUG_
33 static int MYDEBUG = 1;
34 #else
35 static int MYDEBUG = 0;
36 #endif
37
38 using namespace std;
39
40 //=============================================================================
41 /*!
42  *  HEXABLOCKPlugin_HEXABLOCK_i::HEXABLOCKPlugin_HEXABLOCK_i
43  *
44  *  Constructor
45  */
46 //=============================================================================
47
48 HEXABLOCKPlugin_HEXABLOCK_i::HEXABLOCKPlugin_HEXABLOCK_i (PortableServer::POA_ptr thePOA,
49                                           int                     theStudyId,
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                                         theStudyId,
59                                         theGenImpl );
60 }
61
62 //=============================================================================
63 /*!
64  *  HEXABLOCKPlugin_HEXABLOCK_i::~HEXABLOCKPlugin_HEXABLOCK_i
65  *
66  *  Destructor
67  */
68 //=============================================================================
69
70 HEXABLOCKPlugin_HEXABLOCK_i::~HEXABLOCKPlugin_HEXABLOCK_i()
71 {
72   if(MYDEBUG) MESSAGE( "HEXABLOCKPlugin_HEXABLOCK_i::~HEXABLOCKPlugin_HEXABLOCK_i" );
73 }
74
75 //=============================================================================
76 /*!
77  *  HEXABLOCKPlugin_HEXABLOCK_i::GetImpl
78  *
79  *  Get implementation
80  */
81 //=============================================================================
82
83 ::HEXABLOCKPlugin_HEXABLOCK* HEXABLOCKPlugin_HEXABLOCK_i::GetImpl()
84 {
85   if(MYDEBUG) MESSAGE( "HEXABLOCKPlugin_HEXABLOCK_i::GetImpl" );
86   return ( ::HEXABLOCKPlugin_HEXABLOCK* )myBaseImpl;
87 }
88