|
//
// *** * * * * * *
// * * * * *
// * * * * * * *
// * * * *
// *** * * * * *
//
// IPUResult.h
// IPUMobile
// Created by Benny (AsiaInfo PRD IPU) on 2020/1/7 09:52.
// Copyright © 2020 Asiainfo. All rights reserved.
//
#import <Foundation/Foundation.h>
typedef void(^IPUPluginUtilCallback)(BOOL success, NSString *result);
@interface IPUResult : NSObject
@property (nonatomic, assign, readonly) BOOL success;
@property (nonatomic, strong, readonly) id content;
+ (IPUResult *)result:(BOOL)success content:(id)content;
@end
IPUResult *Result(BOOL success, id content);
|