2013-04-13 17:40:17 +00:00
|
|
|
/**
|
|
|
|
* Copyright Maarten Billemont (http://www.lhunath.com, lhunath@lyndir.com)
|
|
|
|
*
|
|
|
|
* See the enclosed file LICENSE for license information (LGPLv3). If you did
|
|
|
|
* not receive this file, see http://www.gnu.org/licenses/lgpl-3.0.txt
|
|
|
|
*
|
|
|
|
* @author Maarten Billemont <lhunath@lyndir.com>
|
|
|
|
* @license http://www.gnu.org/licenses/lgpl-3.0.txt
|
|
|
|
*/
|
|
|
|
|
|
|
|
//
|
|
|
|
// MPSetupViewController.h
|
|
|
|
// MPSetupViewController
|
|
|
|
//
|
|
|
|
// Created by lhunath on 2013-04-11.
|
|
|
|
// Copyright, lhunath (Maarten Billemont) 2013. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
|
|
|
|
@interface MPSetupViewController : UIViewController
|
2013-04-14 14:24:24 +00:00
|
|
|
|
2013-04-20 18:11:19 +00:00
|
|
|
@property(weak, nonatomic) IBOutlet UISwitch *rememberLoginSwitch;
|
2014-09-29 02:57:38 +00:00
|
|
|
@property(weak, nonatomic) IBOutlet UISwitch *showPasswordsSwitch;
|
2013-04-14 14:24:24 +00:00
|
|
|
|
2013-04-13 17:40:17 +00:00
|
|
|
- (IBAction)close:(UIBarButtonItem *)sender;
|
2013-04-14 14:24:24 +00:00
|
|
|
|
2013-04-13 17:40:17 +00:00
|
|
|
@end
|