mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 15:30:18 +00:00
fb3a1705e3
These two new classes can represent items in our SourceList that refer to specific actions (such as comitting), or specific Remotes.
18 lines
305 B
Objective-C
18 lines
305 B
Objective-C
//
|
|
// PBSourceViewAction.h
|
|
// GitX
|
|
//
|
|
// Created by Pieter de Bie on 9/8/09.
|
|
// Copyright 2009 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "PBSourceViewItem.h"
|
|
|
|
@interface PBSourceViewAction : PBSourceViewItem {
|
|
NSImage *icon;
|
|
}
|
|
|
|
@property(retain) NSImage *icon;
|
|
@end
|