Salome HOME
Porting to Mandrake 10.1 and new products:
[modules/kernel.git] / src / Batch / Batch_FactBatchManager_LSF.hxx
1 /*
2  * FactBatchManager_LSF.hxx : 
3  *
4  * Auteur : Ivan DUTKA-MALEN - EDF R&D
5  * Date   : Septembre 2004
6  * Projet : SALOME 2
7  *
8  */
9
10 #ifndef _FACTBATCHMANAGER_LSF_H_
11 #define _FACTBATCHMANAGER_LSF_H_
12
13 using namespace std;
14 #include <string>
15 #include <map>
16 #include "Batch_FactBatchManager.hxx"
17
18 namespace Batch {
19   
20   class BatchManager_LSF;
21
22   class FactBatchManager_LSF : public FactBatchManager
23   {
24   public:
25     // Constructeur et destructeur
26     FactBatchManager_LSF();
27     virtual ~FactBatchManager_LSF();
28
29     virtual BatchManager * operator() (const char * hostname) const;
30
31   protected:
32
33   private:
34
35   };
36
37 }
38
39 #endif