exportSignAndUploadDocument() is not used on MOBILEAPP (and does not compile for iOS at least)

Change-Id: I23bdd461c8dffb407e6aee2a378c47dc38239618
This commit is contained in:
Tor Lillqvist 2019-01-22 15:50:13 +02:00
parent c3d67d6af2
commit 669e90de20

View file

@ -1402,6 +1402,8 @@ bool ChildSession::signDocumentContent(const char* buffer, int length, const std
return bResult;
}
#ifndef MOBILEAPP
bool ChildSession::exportSignAndUploadDocument(const char* buffer, int length, const std::vector<std::string>& /*tokens*/)
{
bool bResult = false;
@ -1567,6 +1569,8 @@ bool ChildSession::exportSignAndUploadDocument(const char* buffer, int length, c
return true;
}
#endif
bool ChildSession::askSignatureStatus(const char* buffer, int length, const std::vector<std::string>& /*tokens*/)
{
std::unique_lock<std::mutex> lock(_docManager.getDocumentMutex());