HttpUtils.h 511 B

123456789101112131415161718192021
  1. //
  2. // HttpUtils.h
  3. // UUTUtils
  4. //
  5. // Created by zhuge on 2017/12/23.
  6. // Copyright © 2017年 zhuge. All rights reserved.
  7. //
  8. #import <Cocoa/Cocoa.h>
  9. @class ProjectInfo_Server;
  10. @interface HttpUtils : NSObject
  11. // 获取服务器上的广告配置
  12. - (void) requestAdConfigs:(ProjectInfo_Server *)server atWindow:(NSWindow*)window;
  13. // 保存服务器上的配置
  14. - (void) saveAdConfigs:(NSString *)cfg forPackage:(NSString*)package atWindow:(NSWindow*)window;
  15. - (void) onRequestFinished:(NSView *)view;
  16. @end