Salome HOME
Implement IMP: Mantis issue 0020834: EDF 1362 SMESH : Add a 2D quadrangle mesher...
[modules/smesh.git] / src / StdMeshers_I / StdMeshers_QuadrangleParams_i.hxx
1 //  Copyright (C) 2007-2010  CEA/DEN, EDF R&D, OPEN CASCADE
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 //  SMESH SMESH_I : idl implementation based on 'SMESH' unit's classes
20 //  File   : StdMeshers_QuadrangleParams_i.hxx
21 //  Author : Sergey KUUL, OCC
22 //  Module : SMESH
23 //  $Header$
24
25 #ifndef _SMESH_QUADRANGLEPARAMS_I_HXX_
26 #define _SMESH_QUADRANGLEPARAMS_I_HXX_
27
28 #include "SMESH_StdMeshers_I.hxx"
29
30 #include <SALOMEconfig.h>
31 #include CORBA_SERVER_HEADER(SMESH_BasicHypothesis)
32
33 #include "SMESH_Hypothesis_i.hxx"
34 #include "StdMeshers_QuadrangleParams.hxx"
35
36 // ======================================================
37 // QuadrangleParams hypothesis
38 // ======================================================
39 class STDMESHERS_I_EXPORT StdMeshers_QuadrangleParams_i:
40   public virtual POA_StdMeshers::StdMeshers_QuadrangleParams,
41   public virtual SMESH_Hypothesis_i
42 {
43 public:
44   // Constructor
45   StdMeshers_QuadrangleParams_i (PortableServer::POA_ptr thePOA,
46                                  int                     theStudyId,
47                                  ::SMESH_Gen*            theGenImpl);
48   // Destructor
49   virtual ~StdMeshers_QuadrangleParams_i();
50
51   // Set length
52   //void SetLength( CORBA::Double theLength, CORBA::Boolean theIsStart )
53   //  throw ( SALOME::SALOME_Exception );
54
55   // Get length
56   //CORBA::Double GetLength(CORBA::Boolean theIsStart);
57
58   // Set base vertex for triangles
59   void SetTriaVertex (CORBA::Long vertID);
60
61   // Get base vertex for triangles
62   CORBA::Long GetTriaVertex();
63   
64   // Set the Entry of the Object
65   void SetObjectEntry (const char* theEntry);
66
67   // Get Object Entry
68   char* GetObjectEntry();
69
70   // Set the type of quadrangulation
71   void SetQuadType (StdMeshers::QuadType type);
72
73   // Get the type of quadrangulation
74   StdMeshers::QuadType GetQuadType();
75
76   // Get implementation
77   ::StdMeshers_QuadrangleParams* GetImpl();
78   
79   // Verify whether hypothesis supports given entity type 
80   CORBA::Boolean IsDimSupported( SMESH::Dimension type );
81 };
82
83 #endif