123456789101112131415161718192021 |
- //
- // HttpUtils.h
- // UUTUtils
- //
- // Created by zhuge on 2017/12/23.
- // Copyright © 2017年 zhuge. All rights reserved.
- //
- #import <Cocoa/Cocoa.h>
- @class ProjectInfo_Server;
- @interface HttpUtils : NSObject
- // 获取服务器上的广告配置
- - (void) requestAdConfigs:(ProjectInfo_Server *)server atWindow:(NSWindow*)window;
- // 保存服务器上的配置
- - (void) saveAdConfigs:(NSString *)cfg forPackage:(NSString*)package atWindow:(NSWindow*)window;
- - (void) onRequestFinished:(NSView *)view;
- @end
|