]> SALOME platform Git repositories - modules/yacs.git/blob - src/engine/Plugin/salomesup.hxx
Salome HOME
copy tag mergefrom_BR_V0_1_CC_Salome_04oct07
[modules/yacs.git] / src / engine / Plugin / salomesup.hxx
1 // -*- C++ -*-
2 // -*- coding: latin_1 -*-
3 //
4 //    File
5 //      creation : 2007-03-23.03.16.40
6 //      revision : $Id$
7 //
8 //    Copyright © 2007 Commissariat à l'Energie Atomique
9 //      par Gilles ARNAUD (DM2S/SFME/LETR)
10 //        C.E. Saclay; Bat 454; 91191 GIF/YVETTE CEDEX; France
11 //        Tel: 01 69 08 38 86; Fax : 33 1 69 08 85 68 
12 //        Gilles.Arnaud@cea.fr
13 // 
14 //    Object
15 //      interface du superviseur salome
16 // 
17 //___________________________________________________________________
18
19
20
21 #ifndef __SALOMESUP__
22 #define __SALOMESUP__
23
24 class Superviseur {
25     public :
26         virtual void destroyAll(void) = 0;
27         virtual void push(long id, std::vector<double> &cal) = 0;
28         virtual long getCurrentId(void) = 0;
29         virtual std::vector<double> *getCurrentOut(void) = 0;
30 };
31
32 #endif
33