Salome HOME
copy tag mergefrom_BR_V0_1_CC_Salome_04oct07
[modules/yacs.git] / src / engine / Plugin / distrib.hxx
1 // -*- C++ -*-
2 // -*- coding: latin_1 -*-
3 //
4 //    File
5 //      creation : 2007-02-26.03.14.22
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 //      distribution des calculs
16 // 
17 //___________________________________________________________________
18
19
20 #ifndef __DISTRIB__
21 #define __DISTRIB__
22
23 #include <vector>
24 #include <utility>
25
26
27 class Distrib {
28     public :
29         virtual void put(long, std::vector<double> &) = 0;
30         virtual std::vector<double> *get(long *) = 0;
31 };
32
33 #endif
34