exportSignAndUploadDocument() is not used on MOBILEAPP (and does not compile for iOS at least)
Change-Id: I23bdd461c8dffb407e6aee2a378c47dc38239618
This commit is contained in:
parent
c3d67d6af2
commit
669e90de20
1 changed files with 4 additions and 0 deletions
|
@ -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());
|
||||
|
|
Loading…
Reference in a new issue