Files
gitx/PBCommandMenuItem.h
2010-11-06 13:20:13 +01:00

20 lines
378 B
Objective-C

//
// PBCommandMenuItem.h
// GitX
//
// Created by Tomasz Krasnyk on 10-11-06.
// Copyright 2010 __MyCompanyName__. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "PBCommand.h"
@interface PBCommandMenuItem : NSMenuItem {
PBCommand *command;
}
@property (nonatomic, retain, readonly) PBCommand *command;
- initWithCommand:(PBCommand *) aCommand;
@end