2019-11-28 17:59:00 +03:00
|
|
|
#ifndef QIF_H
|
|
|
|
#define QIF_H
|
|
|
|
|
2019-11-28 18:13:56 +03:00
|
|
|
#include "idistribution.h"
|
|
|
|
|
|
|
|
|
2019-11-28 17:59:00 +03:00
|
|
|
/**
|
|
|
|
* @brief The QIF class provides interface betvin deployment targets and Qt Installer Framework
|
|
|
|
*/
|
2019-11-28 18:13:56 +03:00
|
|
|
class QIF: public iDistribution
|
2019-11-28 17:59:00 +03:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
QIF();
|
2019-11-28 18:13:56 +03:00
|
|
|
Envirement toolKitLocation();
|
2020-01-04 16:39:25 +03:00
|
|
|
QString getConfig();
|
|
|
|
QString runCmd();
|
2019-11-28 17:59:00 +03:00
|
|
|
|
2020-01-04 16:39:25 +03:00
|
|
|
private:
|
2019-11-28 17:59:00 +03:00
|
|
|
|
|
|
|
QString findBinaryCreator();
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // QIF_H
|