Statistics
| Branch: | Tag: | Revision:

root / Classes / ChefValidationKeyViewController.h @ 9fee07a6

History | View | Annotate | Download (548 Bytes)

1
//
2
//  ChefValidationKeyViewController.h
3
//  OpenStack
4
//
5
//  Created by Mike Mayo on 11/4/10.
6
//  The OpenStack project is provided under the Apache 2.0 license.
7
//
8

    
9
#import <UIKit/UIKit.h>
10

    
11

    
12
@interface ChefValidationKeyViewController : UITableViewController <UITextFieldDelegate> {
13
    BOOL usingOpscodePlatform;
14
    NSString *organization;
15
    NSDictionary *pemFiles;
16
    NSArray *sortedPemFilenames;
17
    UITextField *textField;
18
    NSIndexPath *selectedIndexPath;
19
    
20
    // TODO: hidden UITextView, get rid of the string manipulation
21
}
22

    
23
@end