26 lines
390 B
Objective-C
26 lines
390 B
Objective-C
//
|
|
// 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
|