mirror of
https://github.com/QuasarApp/CQtDeployer.git
synced 2025-05-18 20:39:36 +00:00
25 lines
587 B
C++
25 lines
587 B
C++
#ifndef DEFAULTDISTRO_H
|
|
#define DEFAULTDISTRO_H
|
|
|
|
#include "idistribution.h"
|
|
|
|
class DEPLOYSHARED_EXPORT DefaultDistro : public iDistribution
|
|
{
|
|
public:
|
|
DefaultDistro(FileManager *);
|
|
|
|
// iDistribution interface
|
|
public:
|
|
QString getConfig() const ;
|
|
bool deployTemplate() override;
|
|
Envirement toolKitEnv() const override;
|
|
QString runCmd() override;
|
|
QStringList runArg() const override;
|
|
bool removeTemplate() const override;
|
|
QProcessEnvironment processEnvirement() const override;
|
|
|
|
QStringList outPutFiles() const override;
|
|
};
|
|
|
|
#endif // DEFAULTDISTRO_H
|