You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
session-ios/Signal/src/view controllers/FingerprintViewController.h

23 lines
571 B
Objective-C

//
// FingerprintViewController.h
// Signal
//
// Created by Dylan Bourgeois on 02/11/14.
// Copyright (c) 2014 Open Whisper Systems. All rights reserved.
//
#import "OWSQRCodeScanningViewController.h"
NS_ASSUME_NONNULL_BEGIN
@class OWSFingerprint;
@interface FingerprintViewController : UIViewController <OWSQRScannerDelegate>
- (void)configureWithFingerprint:(OWSFingerprint *)fingerprint contactName:(NSString *)contactName;
- (void)controller:(OWSQRCodeScanningViewController *)controller didDetectQRCodeWithData:(NSData *)data;
@end
NS_ASSUME_NONNULL_END