summaryrefslogtreecommitdiff
path: root/UICaboodle/RVPage.mm
blob: 932b45ee4ba30a480b094574bd88507e902e9fa1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#import "RVPage.h"

#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>

#import "RVBook.h"

@implementation UCViewController 
- (void)setDelegate:(id)delegate {
	delegate_ = delegate;
}
- (BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)orientation {
	return NO; /* XXX: return YES; */
}
- (void) reloadData {
}
@end