Exceptions oubliées

This commit is contained in:
GERALD NICOLAS 2021-02-10 18:00:43 +01:00
parent b54385ddd4
commit 6b6029858b

View File

@ -141,12 +141,12 @@ module SMESH{
typedef MG_ADAPT MG_ADAPT_HYPOTHESIS; typedef MG_ADAPT MG_ADAPT_HYPOTHESIS;
interface MG_ADAPT_OBJECT : SALOME::GenericObj interface MG_ADAPT_OBJECT : SALOME::GenericObj
{ {
void setMeshIn(in SMESH_Mesh theMesh ); void setMeshIn(in SMESH_Mesh theMesh ) raises (SALOME::SALOME_Exception);
void setMEDFileIn(in string f); void setMEDFileIn(in string f) raises (SALOME::SALOME_Exception);
void setMEDFileOut(in string f); void setMEDFileOut(in string f) raises (SALOME::SALOME_Exception);
void setMEDFileBackground(in string f); void setMEDFileBackground(in string f) raises (SALOME::SALOME_Exception);
void AddHypothesis(in MG_ADAPT mg); void AddHypothesis(in MG_ADAPT mg) raises (SALOME::SALOME_Exception);
long Compute(in boolean Publish); long Compute(in boolean Publish) raises (SALOME::SALOME_Exception);
}; };
}; };