// // QRCodeViewController.h // kneet // // Created by Jason Lee on 5/18/15. // Copyright (c) 2015 ntels. All rights reserved. // #import "JDViewController.h" typedef NS_ENUM(NSInteger, QRCodeType) { QRCodeTypeHomeHub = 0 }; @interface QRCodeViewController : JDViewController #pragma mark - Properties @property (assign, nonatomic) QRCodeType qrcodeType; @property (weak, nonatomic) IBOutlet UIView *containerView; #pragma mark - Instance Methods - (IBAction)btnInsertTouched:(id)sender; - (IBAction)btnCancelTouched:(id)sender; - (void)requestQRAuthrize:(NSString *)activationCode password:(NSString *)password; @end