]> SALOME platform Git repositories - modules/kernel.git/blob - src/Batch/Batch_FactBatchManager_Local_SH.cxx
Salome HOME
PR: merge from branch BR_auto_V310 tag mergefrom_OCC_development_for_3_2_0a2_10mar06
[modules/kernel.git] / src / Batch / Batch_FactBatchManager_Local_SH.cxx
1 /*
2  * FactBatchManager_Local_SH.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_Local_SH.hxx"
12 #include "Batch_FactBatchManager_Local_SH.hxx"
13 //#include "utilities.h"
14
15 namespace Batch {
16
17   static FactBatchManager_Local_SH sFBM_Local_SH;
18
19   // Constructeur
20   FactBatchManager_Local_SH::FactBatchManager_Local_SH() : FactBatchManager("SH")
21   {
22     // Nothing to do
23   }
24
25   // Destructeur
26   FactBatchManager_Local_SH::~FactBatchManager_Local_SH()
27   {
28     // Nothing to do
29   }
30
31   // Functor
32   BatchManager * FactBatchManager_Local_SH::operator() (const char * hostname) const
33   {
34     // MESSAGE("Building new BatchManager_Local_SH on host '" << hostname << "'");
35     return new BatchManager_Local_SH(this, hostname);
36   }
37
38
39 }