mirror of
https://github.com/somegeekintn/SimDirs.git
synced 2026-06-30 05:39:32 +00:00
25 lines
566 B
Objective-C
25 lines
566 B
Objective-C
//
|
|
// QSSimViewController.h
|
|
// SimDirs
|
|
//
|
|
// Created by Casey Fleser on 10/31/14.
|
|
// Copyright (c) 2014 Quiet Spark. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@protocol QSOutlineProvider <NSObject>
|
|
|
|
- (NSInteger) outlineChildCount;
|
|
- (id) outlineChildAtIndex: (NSInteger) inIndex;
|
|
- (BOOL) outlineItemIsExpanable;
|
|
- (NSString *) outlineItemValueForColumn: (NSTableColumn *) inTableColumn;
|
|
|
|
- (BOOL) outlineItemPerformAction;
|
|
- (BOOL) outlineItemPerformActionForChild: (id) inChild;
|
|
|
|
@end
|
|
|
|
@interface QSSimViewController : NSObject
|
|
|
|
@end
|