react-native-camera/RCTCamera.h

15 lines
303 B
C
Raw Normal View History

2015-03-31 18:02:57 -07:00
#import <UIKit/UIKit.h>
#import <AVFoundation/AVFoundation.h>
2015-03-31 18:02:57 -07:00
#import "ViewfinderView.h"
@class RCTCameraManager;
2015-03-31 18:02:57 -07:00
@interface RCTCamera : UIView
@property (nonatomic) ViewfinderView *viewfinder;
@property (nonatomic) RCTCameraManager *manager;
- (id)initWithManager:(RCTCameraManager*)manager;
2015-03-31 18:02:57 -07:00
@end