Salome HOME
First publish of HEXABLOCKPLUGIN
[plugins/hexablockplugin.git] / src / HEXABLOCKPlugin / HEXABLOCKPlugin_Hypothesis.hxx
1 //  Copyright (C) 2004-2010  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   void SetDocument(HEXA_NS::Document* doc);
49   HEXA_NS::Document* GetDocument() const;
50
51   /*!
52    * To define the hight dimension to generated: 3 = hexas, 2 = quads, 1 = segments, 0 = nodes
53    */
54   void SetDimension(int dim);
55   int GetDimension() const;
56
57   // Persistence
58   virtual std::ostream & SaveTo(std::ostream & save);
59   virtual std::istream & LoadFrom(std::istream & load);
60   friend HEXABLOCKPLUGIN_EXPORT std::ostream & operator <<(std::ostream & save, HEXABLOCKPlugin_Hypothesis & hyp);
61   friend HEXABLOCKPLUGIN_EXPORT std::istream & operator >>(std::istream & load, HEXABLOCKPlugin_Hypothesis & hyp);
62
63   /*!
64    * \brief Does nothing
65    */
66   virtual bool SetParametersByMesh(const SMESH_Mesh* theMesh, const TopoDS_Shape& theShape);
67
68   /*!
69    * \brief Does nothing
70    */
71   virtual bool SetParametersByDefaults(const TDefaults& dflts, const SMESH_Mesh* theMesh=0);
72
73 private:
74   HEXA_NS::Document* _document;
75   int _dimension;
76 };
77
78
79 #endif