AppDelegate.h 611 B

12345678910111213141516171819202122232425
  1. //
  2. // AppDelegate.h
  3. // AntsContract
  4. //
  5. // Created by Ray on 12/16/16.
  6. // Copyright © 2016 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface AppDelegate : UIResponder <UIApplicationDelegate>
  10. @property (strong, nonatomic) UIWindow *window;
  11. @property bool bEnable_Cache;
  12. @property bool bLogin;
  13. @property (strong,nonatomic) NSString* user;
  14. @property (strong,nonatomic) NSString * password;
  15. @property (strong,nonatomic) NSString* build;
  16. -(void) Logout;
  17. -(void) Login:(NSString* )user pwd:(NSString*) pwd;
  18. @property (strong,nonatomic) NSString* printerURL;
  19. @end