Fix compile errors
[pithos-ios] / Classes / ServerActionViewController.h
1 //
2 //  ServerActionViewController.h
3 //  OpenStack
4 //
5 //  Created by Mike Mayo on 2/11/10.
6 //  The OpenStack project is provided under the Apache 2.0 license.
7 //
8
9 #import <UIKit/UIKit.h>
10
11 @class ServerViewController;
12
13 @interface ServerActionViewController : UIViewController {
14         ServerViewController *serverViewController;
15     NSIndexPath *actionIndexPath;
16     IBOutlet UINavigationBar *navigationBar;
17 }
18
19 @property (nonatomic, retain) ServerViewController *serverViewController;
20 @property (nonatomic, retain) NSIndexPath *actionIndexPath;
21
22 -(void)cancelButtonPressed:(id)sender;
23
24 @end