Salome HOME
Merge from V6_main (04/10/2012)
[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 #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                                           int                     theStudyId,
51                                           ::SMESH_Gen*            theGenImpl )
52      : SALOME::GenericObj_i( thePOA ), 
53        SMESH_Hypothesis_i( thePOA ), 
54        SMESH_Algo_i( thePOA ),
55        SMESH_3D_Algo_i( thePOA )
56 {
57   if(MYDEBUG) MESSAGE( "HEXABLOCKPlugin_HEXABLOCK_i::HEXABLOCKPlugin_HEXABLOCK_i" );
58   myBaseImpl = new ::HEXABLOCKPlugin_HEXABLOCK (theGenImpl->GetANewId(),
59                                         theStudyId,
60                                         theGenImpl );
61 }
62
63 //=============================================================================
64 /*!
65  *  HEXABLOCKPlugin_HEXABLOCK_i::~HEXABLOCKPlugin_HEXABLOCK_i
66  *
67  *  Destructor
68  */
69 //=============================================================================
70
71 HEXABLOCKPlugin_HEXABLOCK_i::~HEXABLOCKPlugin_HEXABLOCK_i()
72 {
73   if(MYDEBUG) MESSAGE( "HEXABLOCKPlugin_HEXABLOCK_i::~HEXABLOCKPlugin_HEXABLOCK_i" );
74 }
75
76 //=============================================================================
77 /*!
78  *  HEXABLOCKPlugin_HEXABLOCK_i::GetImpl
79  *
80  *  Get implementation
81  */
82 //=============================================================================
83
84 ::HEXABLOCKPlugin_HEXABLOCK* HEXABLOCKPlugin_HEXABLOCK_i::GetImpl()
85 {
86   if(MYDEBUG) MESSAGE( "HEXABLOCKPlugin_HEXABLOCK_i::GetImpl" );
87   return ( ::HEXABLOCKPlugin_HEXABLOCK* )myBaseImpl;
88 }
89