mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
21 lines
387 B
Objective-C
21 lines
387 B
Objective-C
//
|
|
// AppController.h
|
|
// MGScopeBar
|
|
//
|
|
// Created by Matt Gemmell on 16/03/2008.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "MGScopeBarDelegateProtocol.h"
|
|
|
|
@interface AppController : NSObject <MGScopeBarDelegate> {
|
|
IBOutlet NSTextField *labelField;
|
|
IBOutlet MGScopeBar *scopeBar;
|
|
IBOutlet NSView *accessoryView;
|
|
NSMutableArray *groups;
|
|
}
|
|
|
|
@property(retain) NSMutableArray *groups;
|
|
|
|
@end
|