// // ActiveViewController.h // RedAnt ERP Mobile // // Created by Ray on 12/15/15. // Copyright © 2015 United Software Applications, Inc. All rights reserved. // #import //#import "TouchLabel.h" #import "NotificationNameCenter.h" //#import "ScanApiHelper.h" #import "AppDelegateBase.h" @protocol ActiveViewController @required -(void) showHidePrice; @end #ifdef RA_NOTIFICATION @interface ActiveViewController : UIViewController #else @interface ActiveViewController : UIViewController -(void) reload_container_getdata:(bool) update_data; #endif -(void) logout; -(void) refresh_on_login; @property int refresh_type; @property bool isrefreshing; -(void)refresh_btn_click:(UILongPressGestureRecognizer*)gestureRecognizer; //-(void) showHidePrice; @property bool disable_refresh; #ifndef RA_NOTIFICATION //support scanner -(void) OnUpdateDevicesList; -(void) onDecodedData:(NSString*) value; -(void) onErrorInfo:(NSString*) errorInfo; -(void) onStatusChanged:(NSString*) status; -(void) onLogUpdate; #else @property bool support_scanner; #endif - (void)reRefreshView; @property NotificationRefreshLevel notification_refreshLevel; #pragma mark - child class response notification -(void) refresh_ui; -(void) reload_data; -(void) clear_data; -(void) refresh_price; +(void) Notify:(NSString*) arr_receiver Message:(NSString*)notification_msg ; @end