0021559: EDF 2175 SMESH: Hexa/Tetra mixed meshes

+  static std::vector< std::string > GetPluginXMLPaths();
This commit is contained in:
eap 2012-09-06 13:50:41 +00:00
parent 2a7bf64d23
commit b2a682e314

View File

@ -43,6 +43,8 @@
#include <map> #include <map>
#include <list> #include <list>
#include <vector>
#include <string>
class SMESHDS_Document; class SMESHDS_Document;
@ -140,9 +142,13 @@ public:
static int GetShapeDim(const TopAbs_ShapeEnum & aShapeType); static int GetShapeDim(const TopAbs_ShapeEnum & aShapeType);
static int GetShapeDim(const TopoDS_Shape & aShape) static int GetShapeDim(const TopoDS_Shape & aShape)
{ return GetShapeDim( aShape.ShapeType() ); } { return GetShapeDim( aShape.ShapeType() ); }
SMESH_Algo* GetAlgo(SMESH_Mesh & aMesh, const TopoDS_Shape & aShape, TopoDS_Shape* assignedTo=0); SMESH_Algo* GetAlgo(SMESH_Mesh & aMesh, const TopoDS_Shape & aShape, TopoDS_Shape* assignedTo=0);
static bool IsGlobalHypothesis(const SMESH_Hypothesis* theHyp, SMESH_Mesh& aMesh); static bool IsGlobalHypothesis(const SMESH_Hypothesis* theHyp, SMESH_Mesh& aMesh);
static std::vector< std::string > GetPluginXMLPaths();
int GetANewId(); int GetANewId();
std::map < int, SMESH_Algo * >_mapAlgo; std::map < int, SMESH_Algo * >_mapAlgo;