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_SSH.hxx
1 /*
2  * FactBatchManager_Local_SSH.hxx : 
3  *
4  * Auteur : Ivan DUTKA-MALEN - EDF R&D
5  * Date   : Septembre 2004
6  * Projet : SALOME 2
7  *
8  */
9
10 #ifndef _FACTBATCHMANAGER_LOCAL_SSH_H_
11 #define _FACTBATCHMANAGER_LOCAL_SSH_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_Local_SSH;
21
22   class FactBatchManager_Local_SSH : public FactBatchManager
23   {
24   public:
25     // Constructeur et destructeur
26     FactBatchManager_Local_SSH();
27     virtual ~FactBatchManager_Local_SSH();
28
29     virtual BatchManager * operator() (const char * hostname) const;
30
31   protected:
32
33   private:
34
35   };
36
37 }
38
39 #endif