Salome HOME
Merge from V5_1_main 14/05/2010
[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
20 //  SMESH SMESH_I : idl implementation based on 'SMESH' unit's calsses
21 //  File   : StdMeshers_QuadrangleParams_i.hxx
22 //  Author : Sergey KUUL, OCC
23 //  Module : SMESH
24 //  $Header$
25 //
26 #ifndef _SMESH_QUADRANGLEPARAMS_I_HXX_
27 #define _SMESH_QUADRANGLEPARAMS_I_HXX_
28
29 #include "SMESH_StdMeshers_I.hxx"
30
31 #include <SALOMEconfig.h>
32 #include CORBA_SERVER_HEADER(SMESH_BasicHypothesis)
33
34 #include "SMESH_Hypothesis_i.hxx"
35 #include "StdMeshers_QuadrangleParams.hxx"
36
37 // ======================================================
38 // QuadrangleParams hypothesis
39 // ======================================================
40 class STDMESHERS_I_EXPORT StdMeshers_QuadrangleParams_i:
41   public virtual POA_StdMeshers::StdMeshers_QuadrangleParams,
42   public virtual SMESH_Hypothesis_i
43 {
44 public:
45   // Constructor
46   StdMeshers_QuadrangleParams_i( PortableServer::POA_ptr thePOA,
47                                  int                     theStudyId,
48                                  ::SMESH_Gen*            theGenImpl );
49   // Destructor
50   virtual ~StdMeshers_QuadrangleParams_i();
51
52   // Set length
53   //void SetLength( CORBA::Double theLength, CORBA::Boolean theIsStart )
54   //  throw ( SALOME::SALOME_Exception );
55
56   // Get length
57   //CORBA::Double GetLength(CORBA::Boolean theIsStart);
58
59   //Set base vertex for triangles
60   void SetTriaVertex(CORBA::Long vertID);
61
62   //Get base vertex for triangles
63   CORBA::Long GetTriaVertex();
64   
65   //Set the Entry of the Object
66   void SetObjectEntry(const char* theEntry);
67
68   //Get Object Entry
69   char* GetObjectEntry();
70
71   // Get implementation
72   ::StdMeshers_QuadrangleParams* GetImpl();
73   
74   // Verify whether hypothesis supports given entity type 
75   CORBA::Boolean IsDimSupported( SMESH::Dimension type );
76 };
77
78 #endif