1 // Copyright (C) 2006-2019 CEA/DEN, EDF R&D
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 // Lesser General Public License for more details.
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
26 COMM, /*!< Communication problem */
27 BAD_PARAM, /*!< Bad User parameters */
28 INTERNAL_ERROR /*!< Application level problem, irrecoverable */
31 struct ExceptionStruct
33 ExceptionType type; /*!<Type of the exception.*/
34 string text; /*!<Message which is shown when the exception is raised.*/
35 string sourceFile; /*!<The source file where the exception is raised.*/
36 unsigned long lineNumber; /*!<Line number where the exception is raised.*/
39 exception SALOME_Exception
41 ExceptionStruct details; /*!<Structure of the exception.*/
44 typedef sequence<double> DoubleVec ;
45 typedef sequence<long> IntVec;
46 typedef sequence<string> StrVec;
47 typedef sequence<Object> ObjectVec;
48 typedef sequence<DoubleVec> DoubleVecVec;
49 typedef sequence<ObjectVec> ObjectVecVec;
53 long echoLong(in long i);
60 long echoLong2(in long i);
66 typedef sequence<Obj> ObjVec ;
70 string echoString(in string mesg);
71 long echoLong(in long i) raises (SALOME_Exception);
72 void echoDouble(in double i,out double j) ;
73 void echoDoubleVec(in DoubleVec i,out DoubleVec j) ;
74 void echoDoubleVecVec(in DoubleVecVec i,out DoubleVecVec j) ;
75 void echoIntVec(in IntVec i,out IntVec j) ;
76 void echoStrVec(in StrVec i,out StrVec j) ;
77 void echoObj2(in Obj i,out Obj j) ;
78 void echoD(in D i,out D j) ;
79 void echoC(in C i,out C j) ;
80 void echoObjVec(in ObjVec i,out ObjVec j) ;
81 void echoObjectVec(in ObjectVec i,out ObjectVec j) ;
82 void echoObjectVecVec(in ObjectVecVec i,out ObjectVecVec j) ;
83 Obj echoObj(in long i,in Obj o,in long k,out Obj p);
84 void createObj(in long i,out Obj p);
85 void createC(out C p);
86 void echoAll(in double d,in long l,in string m,in Obj o,out double dd,out long ll,out string s,out Obj p);
88 interface SubEcho:Echo