Added MPTreeDelegate stubb

This commit is contained in:
michael starke
2014-09-01 19:04:49 +02:00
parent 82ce6da892
commit 05de5f0e9a
3 changed files with 13 additions and 1 deletions

View File

@@ -7,7 +7,8 @@
//
#import <Foundation/Foundation.h>
#import "KPKTree.h"
@interface MPTreeDelegate : NSObject
@interface MPTreeDelegate : NSObject <KPKTreeDelegate>
@end

View File

@@ -10,4 +10,9 @@
@implementation MPTreeDelegate
- (NSString *)defaultAutotypeSequenceForTree:(KPKTree *)tree {
/* TODO use Settings for the default autotype sequence */
return nil;
}
@end