// // Timr.m // Timr // // Created by Jeena on 15.12.09. // Copyright 2009 __MyCompanyName__. All rights reserved. // #import "Timr.h" @implementation Timr - (id)initWithFrame:(NSRect)frame { self = [super initWithFrame:frame]; if (self) { // Initialization code here. } return self; } - (void)drawRect:(NSRect)dirtyRect { // Drawing code here. } @end