]> SALOME platform Git repositories - plugins/hexablockplugin.git/blob - src/HEXABLOCKPlugin/HEXABLOCKPlugin_Hypothesis_i.cxx
Salome HOME
0023299: [CEA] Finalize multi-study removal
[plugins/hexablockplugin.git] / src / HEXABLOCKPlugin / HEXABLOCKPlugin_Hypothesis_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 // File      : HEXABLOCKPlugin_Hypothesis_i.cxx
21 // Created   : Wed Apr  2 13:53:01 2008
22 // Author    : Lioka RAZAFINDRAZAKA (CEA)
23 //
24 #include <SMESH_Gen.hxx>
25 #include <SMESH_PythonDump.hxx>
26 #include <SMESH_Mesh_i.hxx>
27
28 // #include "HEXABLOCK.hxx"
29 #include "HEXABLOCKPlugin_Hypothesis_i.hxx"
30 // #include "HexDocument_impl.hxx"    // Perime
31 #include "HexDocument.hxx"
32
33 #include <Utils_CorbaException.hxx>
34 #include <utilities.h>
35
36 #ifdef _DEBUG_
37 static int MYDEBUG = HEXA_NS::on_debug ();
38 #else
39 static int MYDEBUG = 0;
40 #endif
41
42 //=======================================================================
43 //function : HEXABLOCKPlugin_Hypothesis_i
44 //=======================================================================
45
46 HEXABLOCKPlugin_Hypothesis_i::HEXABLOCKPlugin_Hypothesis_i (PortableServer::POA_ptr thePOA,
47                                                             ::SMESH_Gen*    theGenImpl)
48   : SALOME::GenericObj_i( thePOA ), 
49     SMESH_Hypothesis_i( thePOA )
50 {
51   if(MYDEBUG) MESSAGE( "HEXABLOCKPlugin_Hypothesis_i::HEXABLOCKPlugin_Hypothesis_i" );
52   myBaseImpl = new ::HEXABLOCKPlugin_Hypothesis (theGenImpl->GetANewId(),
53                                                  theGenImpl);
54   _poa = PortableServer::POA::_duplicate(thePOA);
55 }
56
57 //=======================================================================
58 //function : ~HEXABLOCKPlugin_Hypothesis_i
59 //=======================================================================
60
61 HEXABLOCKPlugin_Hypothesis_i::~HEXABLOCKPlugin_Hypothesis_i()
62 {
63   if(MYDEBUG) MESSAGE( "HEXABLOCKPlugin_Hypothesis_i::~HEXABLOCKPlugin_Hypothesis_i" );
64 }
65
66 //=============================================================================
67 /*!
68  *  Get implementation
69  */
70 //=============================================================================
71
72 ::HEXABLOCKPlugin_Hypothesis* HEXABLOCKPlugin_Hypothesis_i::GetImpl()
73 {
74   return (::HEXABLOCKPlugin_Hypothesis*)myBaseImpl;
75 }
76
77 //================================================================================
78 /*!
79  * \brief Verify whether hypothesis supports given entity type 
80  */
81 //================================================================================  
82
83 CORBA::Boolean HEXABLOCKPlugin_Hypothesis_i::IsDimSupported( SMESH::Dimension type )
84 {
85   return type == SMESH::DIM_3D;
86 }
87
88 //================================================================================
89 /*!
90  * Define the document to be meshed, mandatory
91  */
92 //================================================================================
93 // ================================================================= GetDocument
94 char* HEXABLOCKPlugin_Hypothesis_i::GetDocument ()
95 {
96   ASSERT (myBaseImpl);
97   cpchar xml = this->GetImpl()->GetXmlFlow ();
98   return CORBA::string_dup (xml);
99 }
100
101 // ================================================================= SetDocument
102 void HEXABLOCKPlugin_Hypothesis_i::SetDocument (const char* name)
103 {
104     ASSERT (myBaseImpl);
105     // this->GetImpl()->SetXmlFlow (xml);
106     this->GetImpl()->SetDocument (name);
107 }
108
109 //================================================================================
110 /*!
111  * To define the hight dimension to generated: 3 = hexas, 2 = quads, 1 = segments, 0 = nodes
112  */
113 //================================================================================
114
115 CORBA::Long HEXABLOCKPlugin_Hypothesis_i::GetDimension() {
116   ASSERT(myBaseImpl);
117   return this->GetImpl()->GetDimension();
118 }
119
120 void HEXABLOCKPlugin_Hypothesis_i::SetDimension(CORBA::Long dim) {
121   ASSERT(myBaseImpl);
122   this->GetImpl()->SetDimension(dim);
123 }