2020-01-05 13:58:38 +03:00
|
|
|
#ifndef DEFAULTDISTRO_H
|
|
|
|
#define DEFAULTDISTRO_H
|
|
|
|
|
|
|
|
#include "idistribution.h"
|
|
|
|
|
|
|
|
class DEPLOYSHARED_EXPORT DefaultDistro : public iDistribution
|
|
|
|
{
|
|
|
|
public:
|
2020-01-15 18:31:09 +03:00
|
|
|
DefaultDistro(FileManager *);
|
2020-01-05 13:58:38 +03:00
|
|
|
|
|
|
|
// iDistribution interface
|
|
|
|
public:
|
|
|
|
QString getConfig() const;
|
2020-01-16 15:25:36 +03:00
|
|
|
bool deployTemplate();
|
2020-01-16 11:10:16 +03:00
|
|
|
Envirement toolKitEnv() const;
|
|
|
|
QString runCmd();
|
2020-01-05 13:58:38 +03:00
|
|
|
QStringList runArg() const;
|
2020-01-15 11:50:30 +03:00
|
|
|
bool removeTemplate() const;
|
2020-01-16 11:10:16 +03:00
|
|
|
QProcessEnvironment processEnvirement() const;
|
2020-03-08 13:52:26 +03:00
|
|
|
|
|
|
|
QStringList outPutFiles() const;
|
2020-01-05 13:58:38 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // DEFAULTDISTRO_H
|