00001 #ifndef SIGEL_GP_SIG_GPPVMHOST_H 00002 #define SIGEL_GP_SIG_GPPVMHOST_H 00003 00004 #include <qstring.h> 00005 #include <qdir.h> 00006 00007 namespace SIGEL_GP 00008 { 00009 00010 class SIG_GPPVMHost 00011 { 00012 00013 public: 00014 00015 SIG_GPPVMHost(); 00016 00017 SIG_GPPVMHost( QString name, 00018 int maxSlaves, 00019 bool enabled, 00020 QDir executableDir ); 00021 00022 SIG_GPPVMHost( QString input ); 00023 00024 QString print() const; 00025 00026 QString name; 00027 00028 int maxSlaves; 00029 00030 bool enabled; 00031 00032 QDir executableDir; 00033 00034 }; 00035 00036 } 00037 00038 #endif // SIGEL_GP_SIG_GPPVMHOST_H