00001 // 00002 // MoodleResultViewController.h 00003 // WIRemoting 00004 // 00005 // Created by Felix Huang on 09-12-08. 00006 // Copyright 2009 Webinit Consulting. All rights reserved. 00007 // 00008 00009 #import <UIKit/UIKit.h> 00010 00011 @class Moodle; 00012 00013 @interface MoodleResultViewController : UITableViewController { 00014 NSString *description; 00015 NSMutableArray *views; 00016 Moodle *moodle; 00017 } 00018 00019 @property (nonatomic, copy) NSString *description; 00020 00021 - (id) initWithTitle:(NSString*) title andDescription:(NSString*) description; 00022 - (void) customize; 00023 - (void) execute; 00024 00025 @end