Salome HOME
First version of PARAMETRIC module
[modules/parametric.git] / idl / PARAMETRIC_Gen.idl
1 // Copyright (C) 2012 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 RunStudy(in long studyID, in SALOMEDS::ID caseEntry)
30       raises (SALOME::SALOME_Exception);
31 };
32
33 };
34
35 #endif