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-14 15:48:35 +03:00
|
|
|
bool deployTemplate() const;
|
2020-01-05 13:58:38 +03:00
|
|
|
Envirement toolKitLocation() const;
|
|
|
|
QString runCmd() const;
|
|
|
|
QStringList runArg() const;
|
2020-01-15 11:50:30 +03:00
|
|
|
bool removeTemplate() const;
|
2020-01-05 13:58:38 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // DEFAULTDISTRO_H
|