Salome HOME
copy tag mergefrom_BR_V0_1_CC_Salome_04oct07
[modules/yacs.git] / src / engine / Plugin / fonction.hxx
1 // -*- C++ -*-
2 // -*- coding: latin_1 -*-
3 //
4 //    File
5 //      creation : 2007-02-26.04.24.28
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 //      prototype de la fonction d evaluation
16 // 
17 //___________________________________________________________________
18
19
20 #ifndef __FONCTION__
21 #define __FONCTION__
22
23 #include <vector>
24
25 class UserFun {
26     public :
27         virtual std::vector<double> *eval(std::vector<double> &) = 0;
28 };
29
30 #endif