// // ISEResultPhone.h // IFlyMSCDemo // // Created by 张剑 on 15/3/6. // // #import /** * The lable of Phone in xml results */ @interface ISEResultPhone : NSObject /** * Beginning of frame,10ms per frame */ @property(nonatomic, assign)int beg_pos; /** * End of frame */ @property(nonatomic, assign)int end_pos; /** * Content of Phone */ @property(nonatomic, strong)NSString* content; /** * Read message:0(Right),16(Skip),32(Duplicate),64(Readback),128(Replace) */ @property(nonatomic, assign)int dp_message; /** * Duration(cn) */ @property(nonatomic, assign)int time_len; /** * Get the standard phonetic symbol of content(en) */ - (NSString*) getStdSymbol; @end