X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=src%2FSMESH_I%2FSMESH_HypothesisFactory_i.cxx;h=ad363f06f45fe108f6789d95519c955075e42bd3;hp=d292a78fcb7b300ef3049ffaeeabb83f70ec2fcb;hb=faa1c8f2bc27c5244a34fe03584826de59cb17b3;hpb=cf8c1dc99ee5029f8374a7ddff34854bfafe066b diff --git a/src/SMESH_I/SMESH_HypothesisFactory_i.cxx b/src/SMESH_I/SMESH_HypothesisFactory_i.cxx index d292a78fc..ad363f06f 100644 --- a/src/SMESH_I/SMESH_HypothesisFactory_i.cxx +++ b/src/SMESH_I/SMESH_HypothesisFactory_i.cxx @@ -38,11 +38,14 @@ using namespace std; //--------------------------------------- #include "SMESH_LocalLength_i.hxx" #include "SMESH_NumberOfSegments_i.hxx" +#include "SMESH_LengthFromEdges_i.hxx" #include "SMESH_MaxElementArea_i.hxx" +#include "SMESH_MaxElementVolume_i.hxx" #include "SMESH_Regular_1D_i.hxx" #include "SMESH_MEFISTO_2D_i.hxx" #include "SMESH_Quadrangle_2D_i.hxx" #include "SMESH_Hexa_3D_i.hxx" +#include "SMESH_NETGEN_3D_i.hxx" //--------------------------------------- @@ -82,11 +85,14 @@ SMESH_HypothesisFactory_i::SMESH_HypothesisFactory_i() //--------------------------------------- _creatorMap["LocalLength"] = new HypothesisCreator_i; _creatorMap["NumberOfSegments"] = new HypothesisCreator_i; +_creatorMap["LengthFromEdges"] = new HypothesisCreator_i; _creatorMap["MaxElementArea"] = new HypothesisCreator_i; +_creatorMap["MaxElementVolume"] = new HypothesisCreator_i; _creatorMap["Regular_1D"] = new HypothesisCreator_i; _creatorMap["MEFISTO_2D"] = new HypothesisCreator_i; _creatorMap["Quadrangle_2D"] = new HypothesisCreator_i; _creatorMap["Hexa_3D"] = new HypothesisCreator_i; +_creatorMap["NETGEN_3D"] = new HypothesisCreator_i; //--------------------------------------- }