mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
20 lines
378 B
Objective-C
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
|