Salome HOME
0021559: EDF 2175 SMESH: Hexa/Tetra mixed meshes
authoreap <eap@opencascade.com>
Thu, 6 Sep 2012 13:50:41 +0000 (13:50 +0000)
committereap <eap@opencascade.com>
Thu, 6 Sep 2012 13:50:41 +0000 (13:50 +0000)
+  static std::vector< std::string > GetPluginXMLPaths();

src/SMESH/SMESH_Gen.hxx

index 4a7d25ac7f7c8e7765dba457fd14a24bcd862f1f..b7854786fc072753e187141e1b6014bba1ae255a 100644 (file)
@@ -43,6 +43,8 @@
 
 #include <map>
 #include <list>
+#include <vector>
+#include <string>
 
 class SMESHDS_Document;
 
@@ -140,9 +142,13 @@ public:
   static int GetShapeDim(const TopAbs_ShapeEnum & aShapeType);
   static int GetShapeDim(const TopoDS_Shape & aShape)
   { return GetShapeDim( aShape.ShapeType() ); }
+
   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 std::vector< std::string > GetPluginXMLPaths();
+
   int GetANewId();
 
   std::map < int, SMESH_Algo * >_mapAlgo;