Statistics
| Branch: | Tag: | Revision:

root / Classes / LogEntryViewController.h @ 64929bae

History | View | Annotate | Download (474 Bytes)

1
//
2
//  LogEntryViewController.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
#import <MessageUI/MessageUI.h>
11
#import <MessageUI/MFMailComposeViewController.h>
12

    
13
@class APILogEntry;
14

    
15
@interface LogEntryViewController : UITableViewController <MFMailComposeViewControllerDelegate> {
16
    APILogEntry *logEntry;
17
}
18

    
19
@property (nonatomic, retain) APILogEntry *logEntry;
20

    
21
@end