mirror of
https://github.com/zhigang1992/transshift.git
synced 2026-06-11 08:49:31 +08:00
22 lines
458 B
Objective-C
22 lines
458 B
Objective-C
//
|
|
// StatusListController.h
|
|
// TransmissionRPCClient
|
|
//
|
|
// UI Controller for torrent statuses
|
|
// All, Downloading, Seeding, Stopped
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "RPCServerConfig.h"
|
|
#import "CommonTableController.h"
|
|
#import "GlobalConsts.h"
|
|
|
|
#define CONTROLLER_ID_TORRENTSSTATUSLIST @"torrentsStatusListContoller"
|
|
|
|
@interface StatusListController : CommonTableController
|
|
|
|
@property(nonatomic) RPCServerConfig *config;
|
|
|
|
- (void)stopUpdating;
|
|
|
|
@end
|