Create application/directory for subdir, if metadata or permissions are applied.
[pithos-ios] / Classes / APILogsViewController.h
1 //
2 //  APILogsViewController.h
3 //  OpenStack
4 //
5 //  Created by Mike Mayo on 10/11/10.
6 //  The OpenStack project is provided under the Apache 2.0 license.
7 //
8
9 #import <UIKit/UIKit.h>
10
11 @class OpenStackAccount, ActivityIndicatorView;
12
13 @interface APILogsViewController : UITableViewController {
14     OpenStackAccount *account;
15     ActivityIndicatorView *activityIndicatorView;
16     BOOL entriesLoaded;
17     NSArray *loggerEntries;
18 }
19
20 @property (nonatomic, retain) OpenStackAccount *account;
21
22 @end