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.
dws/ui/cocoa/RequestHistoryItem.h

16 lines
399 B
Objective-C

#import <Cocoa/Cocoa.h>
#import "ui.h"
@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