From: rnc Date: Mon, 3 Jun 2013 14:38:18 +0000 (+0000) Subject: Change the hypothesis member status from private to protected in GHS3DPlugin_GHS3D... X-Git-Tag: V7_3_0a1~43 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=de2cff6011ae723e5b94e2858eb1157bec8d2c82;p=plugins%2Fhybridplugin.git Change the hypothesis member status from private to protected in GHS3DPlugin_GHS3D algorithm for consistency with other algorithms (BLSURF, NETGEN, standard algorithms ...). It will be useful in the frame of the Hexotic size maps development. --- diff --git a/src/GHS3DPlugin/GHS3DPlugin_GHS3D.hxx b/src/GHS3DPlugin/GHS3DPlugin_GHS3D.hxx index 3489879..7ac6009 100644 --- a/src/GHS3DPlugin/GHS3DPlugin_GHS3D.hxx +++ b/src/GHS3DPlugin/GHS3DPlugin_GHS3D.hxx @@ -81,6 +81,10 @@ public: static const char* Name() { return "GHS3D_3D"; } +protected: + const GHS3DPlugin_Hypothesis* _hyp; + const StdMeshers_ViscousLayers* _viscousLayersHyp; + private: bool storeErrorDescription(const TCollection_AsciiString& logFile, @@ -90,8 +94,6 @@ private: int _iShape; int _nbShape; bool _keepFiles; - const GHS3DPlugin_Hypothesis* _hyp; - const StdMeshers_ViscousLayers* _viscousLayersHyp; SALOMEDS::Study_var myStudy; SMESH_Gen_i* smeshGen_i;