blob: 6682a000e47a97e7187e19774be0b5f68e475f88 [file]
//
// MainView.m
// iWebDriver
//
// Created by Joseph Gentle on 11/27/08.
// Copyright __MyCompanyName__ 2008. All rights reserved.
//
#import "MainView.h"
@implementation MainView
- (id)initWithFrame:(CGRect)frame {
if (self = [super initWithFrame:frame]) {
// Initialization code
}
return self;
}
- (void)drawRect:(CGRect)rect {
// Drawing code
}
- (void)dealloc {
[super dealloc];
}
@end