X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=src%2FSMESH%2FSMESH_HypothesisFactory.cxx;h=1373fae69a7d72c2110c0129a490bc1879b237a3;hp=ec9b492ef4f6a9d4dd423e1db87ea191b3a0d8b9;hb=0aec6215ad14ec7743951aa68bbbc8f7369b7deb;hpb=4791f5b30ea7a9c1247aa551750dc71cb83b99aa diff --git a/src/SMESH/SMESH_HypothesisFactory.cxx b/src/SMESH/SMESH_HypothesisFactory.cxx index ec9b492ef..1373fae69 100644 --- a/src/SMESH/SMESH_HypothesisFactory.cxx +++ b/src/SMESH/SMESH_HypothesisFactory.cxx @@ -41,11 +41,14 @@ using namespace std; #include "SMESH_LengthFromEdges.hxx" #include "SMESH_NumberOfSegments.hxx" #include "SMESH_MaxElementArea.hxx" +#include "SMESH_MaxElementVolume.hxx" #include "SMESH_Regular_1D.hxx" #include "SMESH_MEFISTO_2D.hxx" #include "SMESH_Quadrangle_2D.hxx" #include "SMESH_Hexa_3D.hxx" - +#ifdef HAVE_NETGEN +#include "SMESH_NETGEN_3D.hxx" +#endif //--------------------------------------- //============================================================================= @@ -87,11 +90,14 @@ _creatorMap["LocalLength"] = new SMESH_HypothesisCreator; _creatorMap["NumberOfSegments"] = new SMESH_HypothesisCreator; _creatorMap["LengthFromEdges"] = new SMESH_HypothesisCreator; _creatorMap["MaxElementArea"] = new SMESH_HypothesisCreator; +_creatorMap["MaxElementVolume"] = new SMESH_HypothesisCreator; _creatorMap["Regular_1D"] = new SMESH_HypothesisCreator; _creatorMap["MEFISTO_2D"] = new SMESH_HypothesisCreator; _creatorMap["Quadrangle_2D"] = new SMESH_HypothesisCreator; _creatorMap["Hexa_3D"] = new SMESH_HypothesisCreator; - +#ifdef HAVE_NETGEN +_creatorMap["NETGEN_3D"] = new SMESH_HypothesisCreator; +#endif //--------------------------------------- }