mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 08:12:28 +00:00
20 lines
364 B
Objective-C
20 lines
364 B
Objective-C
//
|
|
// MPTreeDelegate.h
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 01/09/14.
|
|
// Copyright (c) 2014 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#import "KeePassKit/KeePassKit.h"
|
|
|
|
@class MPDocument;
|
|
|
|
@interface MPTreeDelegate : NSObject <KPKTreeDelegate>
|
|
|
|
- (instancetype)initWithDocument:(MPDocument *)document;
|
|
|
|
@end
|