Skip to content
Snippets Groups Projects
Forked from gmsh / gmsh
8272 commits behind the upstream repository.
ModelListController.h 451 B
#import <UIKit/UIKit.h>
#import <MessageUI/MessageUI.h>
#import "EAGLView.h"

@interface ModelListController : UITableViewController <NSXMLParserDelegate, MFMailComposeViewControllerDelegate>
{
    @private
    NSMutableArray *models;
    NSString *currentElement;
    NSMutableString *currentElementValue;
    NSString *currentDir;
    NSString *selectedModel;
    NSString *currentFileToEdit;
}
@property (nonatomic, retain) EAGLView *glView;

@end