| 1234567891011121314151617181920212223242526272829303132333435363738 |
- //
- // ActiveViewController.h
- // RedAnt ERP Mobile
- //
- // Created by Ray on 12/15/15.
- // Copyright © 2015 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- //#import "TouchLabel.h"
- @protocol ActiveViewController
- @required
- -(void) showHidePrice;
- @end
- @interface ActiveViewController : UIViewController <ActiveViewController>
- -(void) reload_container_getdata:(bool) update_data;
- -(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;
- //support scanner
- -(void) OnUpdateDevicesList;
- -(void) onDecodedData:(NSString*) value;
- -(void) onErrorInfo:(NSString*) errorInfo;
- -(void) onStatusChanged:(NSString*) status;
- -(void) onLogUpdate;
- @end
|