Split view management out of NJDeviceController. Right now this probably just makes...
[enjoyable.git] / Categories / NSOutlineView+ItemAccessors.h
diff --git a/Categories/NSOutlineView+ItemAccessors.h b/Categories/NSOutlineView+ItemAccessors.h
new file mode 100644 (file)
index 0000000..bd7bc88
--- /dev/null
@@ -0,0 +1,16 @@
+//
+//  NSOutlineView+ItemAccessors.h
+//  Enjoyable
+//
+//  Created by Joe Wreschnig on 3/16/13.
+//
+//
+
+#import <Cocoa/Cocoa.h>
+
+@interface NSOutlineView (ItemAccessors)
+
+- (void)selectItem:(id)item;
+- (id)selectedItem;
+
+@end