X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=src%2FStdMeshers_I%2FStdMeshers_i.cxx;fp=src%2FStdMeshers_I%2FStdMeshers_i.cxx;h=b22321f16fdcf4f11c224bf48a477e4241579d9c;hp=51fdef1a6e184dd1dc017c65ef1214551963bd2a;hb=d3c3260cd969833da715c1aaec3bfcaea2ceabea;hpb=e3d582dca70275fa15c65d7d01a3b9c019017c8d diff --git a/src/StdMeshers_I/StdMeshers_i.cxx b/src/StdMeshers_I/StdMeshers_i.cxx index 51fdef1a6..b22321f16 100644 --- a/src/StdMeshers_I/StdMeshers_i.cxx +++ b/src/StdMeshers_I/StdMeshers_i.cxx @@ -77,6 +77,7 @@ #include "StdMeshers_UseExisting_1D2D_i.hxx" #include "StdMeshers_ViscousLayers2D_i.hxx" #include "StdMeshers_ViscousLayers_i.hxx" +#include "StdMeshers_ViscousLayerBuilder_i.hxx" namespace SMESH { class ApplicableToAny @@ -206,7 +207,7 @@ STDMESHERS_I_EXPORT else if (strcmp(aHypName, "CartesianParameters3D") == 0) aCreator = new StdHypothesisCreator_i; else if (strcmp(aHypName, "BlockRenumber") == 0) - aCreator = new StdHypothesisCreator_i; + aCreator = new StdHypothesisCreator_i; // Algorithms else if (strcmp(aHypName, "Regular_1D") == 0) @@ -248,7 +249,9 @@ STDMESHERS_I_EXPORT else if (strcmp(aHypName, "PolygonPerFace_2D") == 0) aCreator = new StdHypothesisCreator_i; else if (strcmp(aHypName, "PolyhedronPerSolid_3D") == 0) - aCreator = new StdHypothesisCreator_i; + aCreator = new StdHypothesisCreator_i; + else if (strcmp(aHypName, "ViscousLayerBuilder") == 0) + aCreator = new StdHypothesisCreator_i; return aCreator; }