Added public object functionality.
[pithos-ios] / Classes / ImagePickerViewController.h
1 //
2 //  ImagePickerViewController.h
3 //  OpenStack
4 //
5 //  Created by Mike Mayo on 10/25/10.
6 //  The OpenStack project is provided under the Apache 2.0 license.
7 //
8
9 #import <UIKit/UIKit.h>
10
11 @class OpenStackAccount;
12
13 @interface ImagePickerViewController : UIViewController <UITableViewDelegate, UITableViewDataSource, UIPickerViewDelegate, UIPickerViewDataSource> {
14     IBOutlet UITableView *tableView;
15         NSString *selectedImageId;
16     OpenStackAccount *account;    
17     NSDictionary *images;
18     NSString *selectedFamily;
19 }
20
21 @property (nonatomic, retain) OpenStackAccount *account;
22 @property (nonatomic, retain) IBOutlet UITableView *tableView;
23
24 @end