// // PBGitResetController.h // GitX // // Created by Tomasz Krasnyk on 10-11-27. // Copyright 2010 __MyCompanyName__. All rights reserved. // #import @class PBGitRepository; @interface PBGitResetController : NSObject { PBGitRepository *repository; } - (id) initWithRepository:(PBGitRepository *) repo; - (NSArray *) menuItems; // actions - (void) resetHardToHead; @end