1 // Copyright (C) 2007-2013 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 // Lesser General Public License for more details.
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 // SMESH SMESH_I : idl implementation based on 'SMESH' unit's calsses
24 // File : StdMeshers_NumberOfSegments_i.hxx
25 // Moved here from SMESH_NumberOfSegments_i.hxx
26 // Author : Paul RASCLE, EDF
29 #ifndef _SMESH_NUMBEROFSEGMENTS_I_HXX_
30 #define _SMESH_NUMBEROFSEGMENTS_I_HXX_
32 #include "SMESH_StdMeshers_I.hxx"
34 #include <SALOMEconfig.h>
35 #include CORBA_SERVER_HEADER(SMESH_Mesh)
36 #include CORBA_SERVER_HEADER(SMESH_BasicHypothesis)
38 #include "SMESH_Hypothesis_i.hxx"
39 #include "StdMeshers_NumberOfSegments.hxx"
41 // ======================================================
42 // Number of segments hypothesis
43 // ======================================================
44 class STDMESHERS_I_EXPORT StdMeshers_NumberOfSegments_i:
45 public virtual POA_StdMeshers::StdMeshers_NumberOfSegments,
46 public virtual SMESH_Hypothesis_i
50 StdMeshers_NumberOfSegments_i( PortableServer::POA_ptr thePOA,
52 ::SMESH_Gen* theGenImpl );
54 virtual ~StdMeshers_NumberOfSegments_i();
56 // Builds point distribution according to passed function
57 SMESH::double_array* BuildDistributionExpr( const char*, CORBA::Long, CORBA::Long )
58 throw ( SALOME::SALOME_Exception );
59 SMESH::double_array* BuildDistributionTab( const SMESH::double_array&, CORBA::Long, CORBA::Long )
60 throw ( SALOME::SALOME_Exception );
62 // Set number of segments
63 void SetNumberOfSegments( CORBA::Long theSegmentsNumber )
64 throw ( SALOME::SALOME_Exception );
65 // Get number of segments
66 CORBA::Long GetNumberOfSegments();
68 // Set distribution type
69 void SetDistrType(CORBA::Long typ)
70 throw ( SALOME::SALOME_Exception );
71 // Get distribution type
72 CORBA::Long GetDistrType();
75 void SetScaleFactor( CORBA::Double theScaleFactor )
76 throw ( SALOME::SALOME_Exception );
78 CORBA::Double GetScaleFactor()
79 throw ( SALOME::SALOME_Exception );
81 // Set table function for distribution DT_TabFunc
82 void SetTableFunction(const SMESH::double_array& table)
83 throw ( SALOME::SALOME_Exception );
84 // Get table function for distribution DT_TabFunc
85 SMESH::double_array* GetTableFunction()
86 throw ( SALOME::SALOME_Exception );
88 // Set expression function for distribution DT_ExprFunc
89 void SetExpressionFunction(const char* expr)
90 throw ( SALOME::SALOME_Exception );
91 // Get expression function for distribution DT_ExprFunc
92 char* GetExpressionFunction()
93 throw ( SALOME::SALOME_Exception );
95 // Set the exponent mode on/off
96 void SetConversionMode( CORBA::Long conv )
97 throw ( SALOME::SALOME_Exception );
98 // Returns true if the exponent mode is set
99 CORBA::Long ConversionMode()
100 throw ( SALOME::SALOME_Exception );
102 // Get implementation
103 ::StdMeshers_NumberOfSegments* GetImpl();
105 // Verify whether hypothesis supports given entity type
106 CORBA::Boolean IsDimSupported( SMESH::Dimension type );
109 void SetReversedEdges( const SMESH::long_array& theIDs);
112 SMESH::long_array* GetReversedEdges();
115 void SetObjectEntry( const char* entry);
118 char* GetObjectEntry();
121 virtual std::string getMethodOfParameter(const int paramIndex, int nbVars) const;