mirror of
https://github.com/QuasarApp/CQtDeployer.git
synced 2025-05-04 21:49:35 +00:00
22 lines
406 B
C++
22 lines
406 B
C++
#ifndef DEFAULTDISTRO_H
|
|
#define DEFAULTDISTRO_H
|
|
|
|
#include "idistribution.h"
|
|
|
|
class DEPLOYSHARED_EXPORT DefaultDistro : public iDistribution
|
|
{
|
|
public:
|
|
DefaultDistro();
|
|
|
|
// iDistribution interface
|
|
public:
|
|
QString getConfig() const;
|
|
void deployTemplate() const;
|
|
Envirement toolKitLocation() const;
|
|
QString runCmd() const;
|
|
QStringList runArg() const;
|
|
|
|
};
|
|
|
|
#endif // DEFAULTDISTRO_H
|