Salome HOME
Increment version number (2.2.3)
[modules/kernel.git] / src / Batch / Batch_FactBatchManager_LSF.cxx
1 /*
2  * FactBatchManager_LSF.cxx : 
3  *
4  * Auteur : Ivan DUTKA-MALEN - EDF R&D
5  * Date   : Septembre 2004
6  * Projet : SALOME 2
7  *
8  */
9
10 #include <string>
11 #include "Batch_BatchManager_LSF.hxx"
12 #include "Batch_FactBatchManager_LSF.hxx"
13 //#include "utilities.h"
14
15 namespace Batch {
16
17   static FactBatchManager_LSF sFBM_LSF;
18
19   // Constructeur
20   FactBatchManager_LSF::FactBatchManager_LSF() : FactBatchManager("LSF")
21   {
22     // Nothing to do
23   }
24
25   // Destructeur
26   FactBatchManager_LSF::~FactBatchManager_LSF()
27   {
28     // Nothing to do
29   }
30
31   // Functor
32   BatchManager * FactBatchManager_LSF::operator() (const char * hostname) const
33   {
34     // MESSAGE("Building new BatchManager_LSF on host '" << hostname << "'");
35     return new BatchManager_LSF(this, hostname);
36   }
37
38
39 }