Salome HOME
Add examples for the definition of the experimental plane with a script or with a...
[modules/parametric.git] / idl / PARAMETRIC_Gen.idl
1 // Copyright (C) 2012-2014 EDF
2 //
3 // This file is part of SALOME PARAMETRIC module.
4 //
5 // SALOME PARAMETRIC module is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU Lesser General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
9 //
10 // SALOME PARAMETRIC module is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 // GNU Lesser General Public License for more details.
14 //
15 // You should have received a copy of the GNU Lesser General Public License
16 // along with SALOME PARAMETRIC module.  If not, see <http://www.gnu.org/licenses/>.
17
18 #ifndef __PARAMETRIC_GEN__
19 #define __PARAMETRIC_GEN__
20
21 #include "SALOME_Component.idl"
22 #include "SALOMEDS.idl"
23
24 module PARAMETRIC_ORB
25 {
26
27 interface PARAMETRIC_Gen : Engines::EngineComponent, SALOMEDS::Driver
28 {
29     void AddParametricStudy(in Engines::fileBlock parametricStudy,
30                             in long salomeStudyID)
31       raises (SALOME::SALOME_Exception);
32
33     void SetParametricStudy(in Engines::fileBlock parametricStudy,
34                             in long salomeStudyID,
35                             in SALOMEDS::ID entry)
36       raises (SALOME::SALOME_Exception);
37
38     Engines::fileBlock GetParametricStudy(in long salomeStudyID,
39                                           in SALOMEDS::ID entry)
40       raises (SALOME::SALOME_Exception);
41
42     void RunStudy(in long salomeStudyID,
43                   in SALOMEDS::ID entry,
44                   in boolean localOnly)
45       raises (SALOME::SALOME_Exception);
46
47     void ExportToCSV(in long salomeStudyID,
48                      in SALOMEDS::ID entry,
49                      in string filePath)
50       raises (SALOME::SALOME_Exception);
51 };
52
53 };
54
55 #endif