macdependency/MacDependency/ExtTreeModel.h
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