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.cxx
1 /*
2  * FactBatchManager_Local.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.hxx"
12 #include "Batch_FactBatchManager_Local.hxx"
13 //#include "utilities.h"
14
15 namespace Batch {
16
17 //   static FactBatchManager_Local sFBM_Local;
18
19   // Constructeur
20   FactBatchManager_Local::FactBatchManager_Local() : FactBatchManager("Local")
21   {
22     // Nothing to do
23   }
24
25   // Destructeur
26   FactBatchManager_Local::~FactBatchManager_Local()
27   {
28     // Nothing to do
29   }
30
31   // Functor
32 //   BatchManager * FactBatchManager_Local::operator() (const char * hostname) const
33 //   {
34 //     // MESSAGE("Building new BatchManager_Local on host '" << hostname << "'");
35 //     return new BatchManager_Local(this, hostname);
36 //   }
37
38
39 }