version 1.1, universal binary, new xcode
[LeanCalc.git] / Sources / MyDocument.h
1 //
2 //  MyDocument.h
3 //  LeanCalc
4 //
5 //  Created by Marc Liyanage on 31.01.05.
6 //  Copyright __MyCompanyName__ 2005 . All rights reserved.
7 //
8
9
10 #import <Cocoa/Cocoa.h>
11 #import "Calculation.h"
12 #import "AppDelegate.h"
13
14 @interface MyDocument : NSDocument
15 {
16         NSTextField *expressionField;
17         NSMutableArray *calculations;
18         NSArrayController *arrayController;
19         NSWindow *window;
20 }
21
22 - (IBAction)commit:(id)sender;
23 - (void)addItem;
24 - (BOOL)lastItemIsSelected;
25 - (void)insertPrevious:(NSNumber *)sender;
26
27 @end