X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=idl%2FMEDCalculator.idl;h=0c47622074895e1b74b679b431a21ce65115a80b;hb=bb9014c6fe3e097edd7009a00dc56f514c680365;hp=b93867c95f22ab6f77fccc8f8c14fdb121e11f48;hpb=ff43ab5bba59622a80e6535b04bf54bfba800698;p=modules%2Fmed.git diff --git a/idl/MEDCalculator.idl b/idl/MEDCalculator.idl old mode 100755 new mode 100644 index b93867c95..0c4762207 --- a/idl/MEDCalculator.idl +++ b/idl/MEDCalculator.idl @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2014 CEA/DEN, EDF R&D, OPEN CASCADE +// Copyright (C) 2011-2022 CEA/DEN, EDF R&D, OPEN CASCADE // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public @@ -25,16 +25,16 @@ #include "SALOME_GenericObj.idl" #include "MEDDataManager.idl" -module MEDOP +module MEDCALC { - + /*! * This constants may be used for the value of an argument of a * function of the interface to specify that the function must * consider a default value. */ - typedef long medopNumber; - const medopNumber NBCOMP_DEFAULT=-1; + typedef long medcalcNumber; + const medcalcNumber NBCOMP_DEFAULT=-1; interface MEDCalculator: SALOME::GenericObj { @@ -56,7 +56,7 @@ module MEDOP /*! Linear transformation of the field f (factor*f+offset) */ FieldHandler lin(in FieldHandler f, in double factor, in double offset) raises (SALOME::SALOME_Exception); - /*! Dublication of the field f */ + /*! Duplication of the field f */ FieldHandler dup(in FieldHandler f) raises (SALOME::SALOME_Exception); @@ -64,7 +64,7 @@ module MEDOP /* FieldHandler ini(in double value) raises (SALOME::SALOME_Exception); */ /*! Transformation of the field f using a custom function */ - FieldHandler fct(in FieldHandler f, in string function, in medopNumber nbResComponents) + FieldHandler fct(in FieldHandler f, in string function, in medcalcNumber nbResComponents) raises (SALOME::SALOME_Exception); };