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

This commit is contained in:
eap 2005-04-04 10:51:04 +00:00
parent b8c2f65b6f
commit 108fc26ea4

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