mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 17:32:17 +00:00
21 lines
387 B
Objective-C
21 lines
387 B
Objective-C
//
|
|
// MPDocumentQueryService.h
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 17.06.13.
|
|
// Copyright (c) 2013 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@class KdbEntry;
|
|
|
|
@interface MPDocumentQueryService : NSObject
|
|
|
|
+ (MPDocumentQueryService *)defaultService;
|
|
|
|
- (KdbEntry *)configurationEntry;
|
|
- (KdbEntry *)createConfigurationEntry;
|
|
|
|
@end
|