first working pass
[usblister.git] / usblister / OutlineData.h
diff --git a/usblister/OutlineData.h b/usblister/OutlineData.h
new file mode 100644 (file)
index 0000000..f1a07b2
--- /dev/null
@@ -0,0 +1,18 @@
+//
+//  OutlineData.h
+//  usblister
+//
+//  Created by Rex Feany on 4/8/11.
+//  Copyright 2011 Fnordsoft, Inc. All rights reserved.
+//
+
+#import <Foundation/Foundation.h>
+
+
+@interface OutlineData : NSObject <NSOutlineViewDataSource> {
+    NSArray *data;
+}
+
+@property (retain, nonatomic) NSArray *data;
+
+@end