Split view management out of NJDeviceController. Right now this probably just makes...
[enjoyable.git] / Categories / NSOutlineView+ItemAccessors.h
1 //
2 // NSOutlineView+ItemAccessors.h
3 // Enjoyable
4 //
5 // Created by Joe Wreschnig on 3/16/13.
6 //
7 //
8
9 #import <Cocoa/Cocoa.h>
10
11 @interface NSOutlineView (ItemAccessors)
12
13 - (void)selectItem:(id)item;
14 - (id)selectedItem;
15
16 @end