You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
399 B
C
16 lines
399 B
C
8 years ago
|
#import <Cocoa/Cocoa.h>
|
||
8 years ago
|
#import "ui.h"
|
||
8 years ago
|
|
||
|
@interface RequestHistoryItem : NSObject
|
||
|
|
||
|
@property (readonly) int seq;
|
||
|
@property (readonly, strong) NSString *path;
|
||
|
@property (readonly) int status;
|
||
|
@property (readonly) int bytes;
|
||
|
|
||
|
+ (instancetype) itemWithRequestMeta:(RequestMeta *)meta;
|
||
|
- (instancetype) initWithRequestMeta:(RequestMeta *)meta;
|
||
|
- (void) updateWithResponseMeta:(ResponseMeta *)meta;
|
||
|
|
||
|
@end
|