Salome HOME
0bc82e22f68a69d220fd0f7417c5cde70575d517
[plugins/hexablockplugin.git] / src / HEXABLOCKPlugin / HEXABLOCKPlugin_Hypothesis.hxx
1 // Copyright (C) 2009-2013  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 //  HEXABLOCKPlugin : C++ implementation
21 // File      : HEXABLOCKPlugin_Hypothesis.hxx
22 // Created   : Wed Apr  2 12:21:17 2008
23 // Author    : Lioka RAZAFINDRAZAKA (CEA)
24 //
25 #ifndef HEXABLOCKPlugin_Hypothesis_HeaderFile
26 #define HEXABLOCKPlugin_Hypothesis_HeaderFile
27
28 #include "HEXABLOCKPlugin_Defs.hxx"
29
30 #include <SMESH_Hypothesis.hxx>
31
32 #include "HexDocument.hxx"
33
34 #include <utilities.h>
35
36 #include <stdexcept>
37 #include <cstdio>
38
39 class HEXABLOCKPLUGIN_EXPORT HEXABLOCKPlugin_Hypothesis: public SMESH_Hypothesis
40 {
41 public:
42
43   HEXABLOCKPlugin_Hypothesis(int hypId, int studyId, SMESH_Gen * gen);
44
45   /*!
46    * Define the document to be meshed, mandatory
47    */
48   HEXA_NS::Document* GetDocument() const;
49
50   // void SetDocument(HEXA_NS::Document* doc); .. replaced by :
51   void  SetDocument (cpchar name);
52   void  SetXmlFlow  (cpchar xml);
53   cpchar GetXmlFlow  () const;
54
55   /*!
56    * To define the hight dimension to generated: 3 = hexas, 2 = quads, 1 = segments, 0 = nodes
57    */
58   void SetDimension(int dim);
59   int GetDimension() const;
60
61   // Persistence
62   virtual std::ostream & SaveTo(std::ostream & save);
63   virtual std::istream & LoadFrom(std::istream & load);
64   friend HEXABLOCKPLUGIN_EXPORT std::ostream & operator <<(std::ostream & save, HEXABLOCKPlugin_Hypothesis & hyp);
65   friend HEXABLOCKPLUGIN_EXPORT std::istream & operator >>(std::istream & load, HEXABLOCKPlugin_Hypothesis & hyp);
66
67   /*!
68    * \brief Does nothing
69    */
70   virtual bool SetParametersByMesh(const SMESH_Mesh* theMesh, const TopoDS_Shape& theShape);
71
72   /*!
73    * \brief Does nothing
74    */
75   virtual bool SetParametersByDefaults(const TDefaults& dflts, const SMESH_Mesh* theMesh=0);
76
77 private:
78   HEXA_NS::Hex*      hexa_root;
79   HEXA_NS::Document* hyp_document;
80   int                hyp_dimension;
81 };
82
83
84 #endif