add dummy implementation for iOS

This commit is contained in:
Michael Zanetti 2019-02-06 14:07:26 +01:00
parent ec08e6c7d5
commit 5f202789c4
2 changed files with 7 additions and 0 deletions

View File

@ -12,6 +12,11 @@ void PlatformHelperIOS::requestPermissions()
emit permissionsRequestFinished();
}
void PlatformHelperIOS::hideSplashScreen()
{
// Nothing to be done
}
bool PlatformHelperIOS::hasPermissions() const
{
return true;

View File

@ -13,6 +13,8 @@ public:
Q_INVOKABLE virtual void requestPermissions() override;
Q_INVOKABLE void hideSplashScreen() override;
virtual bool hasPermissions() const override;
virtual QString machineHostname() const override;
virtual QString deviceSerial() const override;