Added public object functionality.
[pithos-ios] / Classes / PasscodeLockViewController.h
1 //
2 //  PasscodeLockViewController.h
3 //  OpenStack
4 //
5 //  Created by Mike Mayo on 10/26/10.
6 //  The OpenStack project is provided under the Apache 2.0 license.
7 //
8
9 #import <UIKit/UIKit.h>
10
11 @class SettingsViewController;
12
13 @interface PasscodeLockViewController : UITableViewController <UIActionSheetDelegate> {
14     UISwitch *simplePasscodeSwitch;
15     UISwitch *eraseDataSwitch;
16     BOOL passcodeLockOn;
17     BOOL simplePasscodeOn;
18     BOOL eraseDataOn;
19     SettingsViewController *settingsViewController;
20 }
21
22 @property (nonatomic, retain) SettingsViewController *settingsViewController;
23
24 @end