// Copyright GreenKeeper Software 2005 #import #import // Responsible for connecting the Log model to the interface @interface LogController : NSObject { // Interface components IBOutlet NSTextView *logView; IBOutlet NSWindow *logWindow; // Local variables NSTextStorage *logStorage; // The model Log *log; } // Called when user selects "Display Log" from the menu - (IBAction)displayLog:(id)sender; - (void)updateLog:(NSNotification *)notification; @end