feat: 自定义的插件
This commit is contained in:
58
Libs/iflyMSC.framework/Headers/IFlySpeechError.h
Normal file
58
Libs/iflyMSC.framework/Headers/IFlySpeechError.h
Normal file
@@ -0,0 +1,58 @@
|
||||
//
|
||||
// IFlySpeechError.h
|
||||
// MSC
|
||||
//
|
||||
// Created by iflytek on 13-3-19.
|
||||
// Copyright (c) 2013年 iflytek. All rights reserved.
|
||||
//
|
||||
|
||||
#ifndef __IFlySpeechError__
|
||||
#define __IFlySpeechError__
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
/*!
|
||||
* 错误描述类
|
||||
*/
|
||||
@interface IFlySpeechError : NSObject
|
||||
|
||||
/*!
|
||||
* 错误码
|
||||
*/
|
||||
@property(nonatomic,assign) int errorCode;
|
||||
|
||||
/*!
|
||||
* 错误码类型
|
||||
*/
|
||||
@property(nonatomic,assign) int errorType;
|
||||
|
||||
/*!
|
||||
* 错误描述
|
||||
*/
|
||||
@property(nonatomic,retain) NSString* errorDesc;
|
||||
|
||||
/*!
|
||||
* 初始化
|
||||
*
|
||||
* @param errorCode -[in] 错误码
|
||||
*
|
||||
* @return IFlySpeechError对象
|
||||
*/
|
||||
+ (instancetype) initWithError:(int) errorCode;
|
||||
|
||||
/*!
|
||||
* 获取错误码
|
||||
*
|
||||
* @return 错误码
|
||||
*/
|
||||
-(int) errorCode;
|
||||
|
||||
/*!
|
||||
* 获取错误描述
|
||||
*
|
||||
* @return 错误描述
|
||||
*/
|
||||
- (NSString *) errorDesc;
|
||||
|
||||
@end
|
||||
#endif
|
||||
Reference in New Issue
Block a user