PAL8536. Add static methods to set initial value of a parameter

This commit is contained in:
eap 2005-04-04 12:06:32 +00:00
parent 4e142b2397
commit 8f2a7615f7

View File

@ -50,5 +50,12 @@ class StdMeshersGUI_Parameters
static bool SetParameters(SMESH::SMESH_Hypothesis_ptr hyp,
const std::list<SMESHGUI_aParameterPtr> & params );
static void SetInitValue(SMESHGUI_aParameterPtr param,
int initValue);
static void SetInitValue(SMESHGUI_aParameterPtr param,
double initValue);
static void SetInitValue(SMESHGUI_aParameterPtr param,
const char* initValue);
};
#endif