mirror of
https://github.com/QuasarApp/CQtDeployer.git
synced 2025-04-28 18:54:33 +00:00
25 lines
469 B
C++
25 lines
469 B
C++
#ifndef QIF_H
|
|
#define QIF_H
|
|
|
|
#include "idistribution.h"
|
|
|
|
|
|
/**
|
|
* @brief The QIF class provides interface betvin deployment targets and Qt Installer Framework
|
|
*/
|
|
class DEPLOYSHARED_EXPORT QIF: public iDistribution
|
|
{
|
|
public:
|
|
QIF();
|
|
Envirement toolKitLocation() const;
|
|
QString getConfig() const;
|
|
QString runCmd() const;
|
|
void deployDefaultTemplate() const;
|
|
QStringList runArg() const;
|
|
|
|
private:
|
|
QString findBinaryCreator();
|
|
};
|
|
|
|
#endif // QIF_H
|