30 lines
432 B
Objective-C
Executable File
30 lines
432 B
Objective-C
Executable File
//
|
|
// IframeInfo.m
|
|
// myhome
|
|
//
|
|
// Created by user on 13-2-19.
|
|
//
|
|
//
|
|
|
|
#import "IframeInfo.h"
|
|
|
|
@implementation IframeInfo
|
|
@synthesize iframe_index;
|
|
@synthesize iframe_time;
|
|
@synthesize bag_num;
|
|
@synthesize bag_receive;
|
|
@synthesize isFull;
|
|
@synthesize cur_len;
|
|
@synthesize bb;
|
|
@synthesize codecMode;
|
|
|
|
-(id)init{
|
|
iframe_index = -1;
|
|
bag_num = 0;
|
|
bag_receive = 0;
|
|
isFull = NO;
|
|
cur_len = 0;
|
|
return self;
|
|
}
|
|
@end
|