// // SyncControlPanelViewController.h // iSales-NPD // // Created by Ray on 7/8/16. // Copyright © 2016 United Software Applications, Inc. All rights reserved. // #import #import @interface SyncControlPanelViewController : UIViewController @property (strong, nonatomic) IBOutlet UIProgressView *progress_current; @property (strong, nonatomic) IBOutlet UIProgressView *progress_overall; @property (strong, nonatomic) IBOutlet UITextView *tv_log; @property (strong, nonatomic) NSString* action_string; @property (strong, nonatomic) UIBarButtonItem *closeButton; -(void) onLogUpdate; -(void) onProgressUpdate; -(void) onSyncFinish; @end