]> SALOME platform Git repositories - modules/yacs.git/blobdiff - src/engine/Plugin/fonction.hxx
Salome HOME
copy tag mergefrom_BR_V0_1_CC_Salome_04oct07
[modules/yacs.git] / src / engine / Plugin / fonction.hxx
diff --git a/src/engine/Plugin/fonction.hxx b/src/engine/Plugin/fonction.hxx
new file mode 100644 (file)
index 0000000..a58bbe5
--- /dev/null
@@ -0,0 +1,30 @@
+// -*- C++ -*-
+// -*- coding: latin_1 -*-
+//
+//    File
+//      creation : 2007-02-26.04.24.28
+//      revision : $Id$
+//
+//    Copyright © 2007 Commissariat à l'Energie Atomique
+//      par Gilles ARNAUD (DM2S/SFME/LETR)
+//        C.E. Saclay; Bat 454; 91191 GIF/YVETTE CEDEX; France
+//        Tel: 01 69 08 38 86; Fax : 33 1 69 08 85 68 
+//        Gilles.Arnaud@cea.fr
+// 
+//    Object
+//      prototype de la fonction d evaluation
+// 
+//___________________________________________________________________
+
+
+#ifndef __FONCTION__
+#define __FONCTION__
+
+#include <vector>
+
+class UserFun {
+    public :
+        virtual std::vector<double> *eval(std::vector<double> &) = 0;
+};
+
+#endif