-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix "Abort Trap 6" crash (part 3 - final)
- Loading branch information
1 parent
84c8950
commit d781a82
Showing
6 changed files
with
49 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// | ||
// SessionDelegate.h | ||
// FaceTec | ||
// | ||
// Created by Alex Serdukov on 17.11.2021. | ||
// Copyright © 2021 Facebook. All rights reserved. | ||
// | ||
|
||
// this is actually a copy of FaceTecFaceScanProcessorDelegate | ||
// it could be defined also on Swift but there's an additional | ||
// research is needed to understand why onFaceTecSessionResult | ||
// doesn't exposed to the auto generated -Swift.h header | ||
// so now it's written on Objective C too | ||
@protocol SessionDelegate<NSObject> | ||
|
||
- (void)onFaceTecSessionResult | ||
:(id<FaceTecSessionResult> _Nonnull) sessionResult | ||
faceScanResultCallback :(id<FaceTecFaceScanResultCallback> _Nonnull) faceScanResultCallback | ||
NS_SWIFT_NAME(onFaceTecSessionResult(sessionResult:faceScanResultCallback:)); | ||
|
||
- (void)onFaceTecSessionDone NS_SWIFT_NAME(onFaceTecSessionDone()); | ||
|
||
@end |
This file was deleted.
Oops, something went wrong.