rename the directory
[AROS.git] / arch / all-ios / hidd / uikit / displaywindow.m
blob548ab577ef819ba7df14bc89ed1c9dea3baedcf0
1 #import "displaywindow.h"
3 @implementation DisplayWindow
5 -(id)initWithFrame:(CGRect)frame
7     self = [super initWithFrame:frame];
8     if (self)
9     {
10         controller = [[DisplayController alloc] initWithSize:frame];
11         
12         [self addSubview:controller.view];
13     }
14     return self;
17 -(void)dealloc
19     [controller release];
20     
21     [super dealloc];
24 @end