mirror of
https://github.com/QuasarApp/CQtDeployer.git
synced 2025-05-07 15:09:35 +00:00
31 lines
858 B
C++
31 lines
858 B
C++
#ifndef DEFAULTDISTRO_H
|
|
#define DEFAULTDISTRO_H
|
|
|
|
#include "idistribution.h"
|
|
|
|
class DEPLOYSHARED_EXPORT DefaultDistro : public iDistribution
|
|
{
|
|
public:
|
|
DefaultDistro(FileManager *);
|
|
|
|
QString getConfig() const ;
|
|
bool deployTemplate(PackageControl &pkg) override;
|
|
bool deployRawTemplate(PackageControl &pkgCtrl) override;
|
|
|
|
Envirement toolKitEnv() const override;
|
|
QList<SystemCommandData> runCmd() override;
|
|
bool removeTemplate() const override;
|
|
QProcessEnvironment processEnvirement() const override;
|
|
|
|
QStringList outPutFiles() const override;
|
|
|
|
// iDistribution interface
|
|
protected:
|
|
QString dataLocation(const DistroModule &module) const override;
|
|
QString location(const DistroModule &module) const override;
|
|
QString releativeLocation(const DistroModule &module) const override;
|
|
|
|
};
|
|
|
|
#endif // DEFAULTDISTRO_H
|