mirror of
https://github.com/zhigang1992/transshift.git
synced 2026-05-16 01:51:45 +08:00
22 lines
450 B
Objective-C
22 lines
450 B
Objective-C
//
|
|
// StatusCategories.h
|
|
// TransmissionRPCClient
|
|
//
|
|
// Holds the list of Status Categories
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "StatusCategory.h"
|
|
|
|
@interface StatusCategories : NSObject
|
|
|
|
@property(nonatomic,readonly) int countOfVisible;
|
|
|
|
- (StatusCategory*)categoryAtIndex:(int)index;
|
|
|
|
- (NSArray*)updateForDeleteWithInfos:(TRInfos *)infos;
|
|
- (NSArray*)updateForInsertWithInfos:(TRInfos*)infos;
|
|
|
|
- (void)updateInfos:(TRInfos*)infos;
|
|
|
|
@end
|