mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 08:12:28 +00:00
20 lines
526 B
Objective-C
20 lines
526 B
Objective-C
//
|
|
// MPDocument.h
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 21.07.12.
|
|
// Copyright (c) 2012 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
APPKIT_EXTERN NSString *const MPDidLoadDataBaseNotification;
|
|
APPKIT_EXTERN NSString *const MPDataBaseDocumentDocumentKey;
|
|
|
|
@interface MPDatabaseDocument : NSObject
|
|
|
|
- (id)initWithFile:(NSURL *)file password:(NSString *)password keyfile:(NSURL *)key;
|
|
- (BOOL) openFile:(NSURL *)file password:(NSString *)password keyfile:(NSURL *)key;
|
|
|
|
@end
|