focus expression text field at startup -> version 1.2
[LeanCalc.git] / Sources / AppDelegate.h
1 //
2 //  AppDelegate.h
3 //  LeanCalc
4 //
5 //  Created by Marc Liyanage on 08.02.05.
6 //  Copyright 2005 __MyCompanyName__. All rights reserved.
7 //
8
9 #import <Cocoa/Cocoa.h>
10
11
12 @interface AppDelegate : NSObject {
13
14         NSMutableArray *functionReference;
15         
16 }
17
18 - (void)initFunctionReference;
19 - (NSArray *)completionsForPartialWord:(NSString *)partialWord;
20
21 @end