Files
PXSourceList/Examples/ViewBasedSourceList/AppDelegate.h
T

20 lines
401 B
Objective-C

//
// AppDelegate.h
// ViewBasedSourceList
//
// Created by Alex Rozanski on 28/12/2013.
//
//
#import <Cocoa/Cocoa.h>
#import "PXSourceList.h"
@interface AppDelegate : NSObject <NSApplicationDelegate, PXSourceListDataSource, PXSourceListDelegate>
@property (assign) IBOutlet NSWindow *window;
@property (assign) IBOutlet PXSourceList *sourceList;
- (IBAction)addButtonAction:(id)sender;
@end