23 lines
452 B
C
Raw Normal View History

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
*/
class DEPLOYSHARED_EXPORT QIF: public iDistribution
2019-11-28 17:59:00 +03:00
{
public:
QIF();
Envirement toolKitLocation() const;
QString getConfig() const;
QString runCmd() const;
2020-01-14 15:48:35 +03:00
bool deployTemplate() const;
QStringList runArg() const;
2020-01-15 11:50:30 +03:00
bool removeTemplate() const;
2019-11-28 17:59:00 +03:00
};
#endif // QIF_H