Statistics
| Branch: | Tag: | Revision:

root / Classes / APILogsViewController.h @ 7e354bb6

History | View | Annotate | Download (490 Bytes)

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