Salome HOME
pickle.load concurrency issue
[modules/yacs.git] / Demo / echo.idl
1 // Copyright (C) 2006-2021  CEA/DEN, EDF R&D
2 //
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.
7 //
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.
12 //
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
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #ifndef __ECHO_IDL__
21 #define __ECHO_IDL__
22
23 module eo{
24   enum ExceptionType
25   {
26     COMM,             /*!< Communication problem */
27     BAD_PARAM,        /*!< Bad User parameters */
28     INTERNAL_ERROR    /*!< Application level problem, irrecoverable */
29   };
30
31   struct ExceptionStruct
32   {
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.*/
37   };
38
39   exception SALOME_Exception
40   {
41     ExceptionStruct details; /*!<Structure of the exception.*/
42   };
43
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;
50
51   interface Obj
52   {
53     long echoLong(in long i);
54   };
55   interface C:Obj
56   {
57   };
58   interface D
59   {
60     long echoLong2(in long i);
61   };
62   interface E:C,D
63   {
64   };
65
66   typedef sequence<Obj> ObjVec ;
67
68   interface Echo
69   {
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 echoObjectVec(in ObjectVec i,out ObjectVec j) ;
81     void echoObjectVecVec(in ObjectVecVec i,out ObjectVecVec j) ;
82     Obj echoObj(in long i,in Obj o,in long k,out Obj p);
83     void createObj(in long i,out Obj p);
84     void createC(out C p);
85     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);
86   };
87   interface SubEcho:Echo
88   {
89   };
90 };
91
92 #endif