// Copyright (C) 2005 CEA/DEN, EDF R&D // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public // License as published by the Free Software Foundation; either // version 2.1 of the License. // // This library is distributed in the hope that it will be useful // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU // Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public // License along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // // See http://www.salome-platform.org/ // //============================================================================= // File : Calculator.idl // Created : jeu nov 08 12:08:17 CEST 2001 // Author : Laurent DADA CEA // Project : SALOME // $Header$ //============================================================================= #ifndef PYCALCULATOR_IDL #define PYCALCULATOR_IDL #include "SALOME_Component.idl" #include "MED.idl" module PYCALCULATOR_ORB { interface PYCALCULATOR_Gen : Engines::Component { SALOME_MED::FIELDDOUBLE Add(in SALOME_MED::FIELDDOUBLE field1, in SALOME_MED::FIELDDOUBLE field2); SALOME_MED::FIELDDOUBLE Mul(in SALOME_MED::FIELDDOUBLE field1, in double x1); SALOME_MED::FIELDDOUBLE Constant(in SALOME_MED::FIELDDOUBLE field1, in double x1); void writeMEDfile(in SALOME_MED::FIELDDOUBLE field1, in string fileName); }; }; #endif