mirror of
https://github.com/oxen-io/session-ios.git
synced 2023-12-13 21:30:14 +01:00
9569a9b9c6
- Revising iconography to stick to v2.0 design. - Multiple bug fixes based on testers feedback - Integration with system addressbook - Removing unused assets.
21 lines
748 B
Objective-C
21 lines
748 B
Objective-C
//
|
|
// ScanIdentityBarcodeViewController.h
|
|
// Signal-iOS
|
|
//
|
|
// Created by Christine Corbett Moran on 3/29/14.
|
|
// Copyright (c) 2014 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import <AVFoundation/AVFoundation.h>
|
|
@interface ScanIdentityBarcodeViewController : UIViewController<AVCaptureMetadataOutputObjectsDelegate>
|
|
|
|
@property(nonatomic,strong) AVCaptureSession *session;
|
|
@property(nonatomic,strong) AVCaptureDevice *device;
|
|
@property(nonatomic,strong) AVCaptureDeviceInput *input;
|
|
@property(nonatomic,strong) AVCaptureMetadataOutput *output;
|
|
@property(nonatomic,strong) AVCaptureVideoPreviewLayer *prevLayer;
|
|
|
|
@property(nonatomic,strong) UIView *highlightView;
|
|
@property(nonatomic,strong) NSData *identityKey;
|
|
@end
|