mirror of
https://github.com/zhigang1992/transshift.git
synced 2026-06-11 08:49:31 +08:00
22 lines
476 B
Objective-C
22 lines
476 B
Objective-C
//
|
|
// RPCServerConfigController.h
|
|
// TransmissionRPCClient
|
|
//
|
|
// Created by Alexey Chechetkin on 23.06.15.
|
|
// Copyright (c) 2015 Alexey Chechetkin. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "RPCServerConfig.h"
|
|
#import "CommonTableController.h"
|
|
|
|
#define CONTROLLER_ID_RPCSERVERCONFIG @"RPCServerConfig"
|
|
|
|
@interface RPCServerConfigController : CommonTableController
|
|
|
|
@property(nonatomic) RPCServerConfig *config;
|
|
- (BOOL)saveConfig;
|
|
- (void)loadConfig;
|
|
|
|
@end
|