Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009 #import <Cocoa/Cocoa.h>
00010
00011 @interface RayWayAppDelegate : NSObject <NSApplicationDelegate> {
00012 NSWindow *window;
00013
00014 NSProgressIndicator *indicator;
00015 NSTextField *txtField;
00016 NSString *titleStr;
00017 }
00018
00019 @property (assign) IBOutlet NSWindow *window;
00020 @property (nonatomic, retain) IBOutlet NSProgressIndicator *indicator;
00021 @property (nonatomic, retain) IBOutlet NSTextField *txtField;
00022 @property (nonatomic, retain) NSString *titleStr;
00023
00024 @end