iostool: add missing overrides

Change-Id: I80e072c5bde4874b89a0af2e105e378674e8d9fe
Reviewed-by: Tobias Hunger <tobias.hunger@theqtcompany.com>
This commit is contained in:
Eike Ziller
2015-10-02 16:10:28 +02:00
committed by Tobias Hunger
parent 7dd847404f
commit f8596d6c63

View File

@@ -304,16 +304,16 @@ public:
AppOpSession(const QString &deviceId, const QString &bundlePath, AppOpSession(const QString &deviceId, const QString &bundlePath,
const QStringList &extraArgs, Ios::IosDeviceManager::AppOp appOp); const QStringList &extraArgs, Ios::IosDeviceManager::AppOp appOp);
void deviceCallbackReturned(); void deviceCallbackReturned() override;
bool installApp(); bool installApp();
bool runApp(); bool runApp();
int qmljsDebugPort() const override; int qmljsDebugPort() const override;
am_res_t appTransferCallback(CFDictionaryRef dict); am_res_t appTransferCallback(CFDictionaryRef dict) override;
am_res_t appInstallCallback(CFDictionaryRef dict); am_res_t appInstallCallback(CFDictionaryRef dict) override;
void reportProgress2(int progress, const QString &status); void reportProgress2(int progress, const QString &status) override;
QString appPathOnDevice(); QString appPathOnDevice();
QString appId(); QString appId();
QString commandName(); QString commandName() override;
}; };
} }