4
0
mirror of https://github.com/QuasarApp/macdependency.git synced 2025-04-30 06:14:36 +00:00
2009-09-23 16:12:43 +00:00

15 lines
315 B
Objective-C

//
// ExtTreeModel.h
// MacDependency
//
// Created by Konrad Windszus on 02.09.09.
// Copyright 2009 Konrad Windszus. All rights reserved.
//
// Protocol which provides a method to get the parent (used by TreeControllerExtension)
#import <Cocoa/Cocoa.h>
@protocol ExtTreeModel<NSObject>
- (id) parent;
@end