00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027 #ifndef _SALOME_Parametric_IDL_
00028 #define _SALOME_Parametric_IDL_
00029
00034 module SALOME_TYPES
00035 {
00039 struct Parameter {
00040 string name;
00041 string value;
00042 };
00043
00046 typedef sequence<Parameter> ParameterList;
00047
00052 typedef sequence<double> Variable;
00053
00057 typedef sequence<Variable> VariableSequence;
00058
00061 typedef sequence<VariableSequence> StateSequence;
00062
00066 typedef sequence<StateSequence> TimeSequence;
00067
00070 typedef sequence<string> VarList;
00071
00074 struct ParametricInput {
00075 VarList inputVarList;
00076 VarList outputVarList;
00077 TimeSequence inputValues;
00078 ParameterList specificParameters;
00079 };
00080
00083 struct ParametricOutput {
00084 TimeSequence outputValues;
00085 ParameterList specificOutputInfos;
00086 long returnCode;
00087 string errorMessage;
00088 };
00089
00090 };
00091
00092 #endif