first commit of files

This commit is contained in:
Jeena Paradies 2009-12-16 01:34:46 +01:00
parent 6bcf3d2582
commit 407f13b281
138 changed files with 10301 additions and 0 deletions

25
TimrAppDelegate.h Normal file
View file

@ -0,0 +1,25 @@
//
// TimrAppDelegate.h
// Timr
//
// Created by Jeena on 15.12.09.
// Copyright 2009 Jeena Paradies. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import "Timer.h"
#if (MAC_OS_X_VERSION_MAX_ALLOWED <= MAC_OS_X_VERSION_10_5)
@interface TimrAppDelegate : NSObject
#else
@interface TimrAppDelegate : NSObject <NSApplicationDelegate>
#endif
{
NSWindow *window;
Timer *timer;
}
@property (assign) IBOutlet NSWindow *window;
@property (assign) IBOutlet Timer *timer;
@end