// // PBWebController.h // GitX // // Created by Pieter de Bie on 08-10-08. // Copyright 2008 __MyCompanyName__. All rights reserved. // #import #import @interface PBWebController : NSObject { IBOutlet WebView* view; NSString *startFile; BOOL finishedLoading; // For async git reading NSMapTable *callbacks; // For the repository access IBOutlet id repository; } @property (retain) NSString *startFile; @property (retain) id repository; - (WebScriptObject *) script; - (void) closeView; @end