Preview and Quicklook stubs

This commit is contained in:
michael starke
2014-03-18 21:42:56 +01:00
parent 6a28d03801
commit 34ba9f0575
8 changed files with 182 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
//
// MPTemporaryFileStorage.h
// MacPass
//
// Created by Michael Starke on 18/03/14.
// Copyright (c) 2014 HicknHack Software GmbH. All rights reserved.
//
#import <Foundation/Foundation.h>
/**
* Instance to handle a temporary file storage. Quicklook support uses this as a means to vent attachments to the system
* After using the file, the storage is removed.
*/
@class KPKBinary;
@interface MPTemporaryFileStorage : NSObject
- (instancetype)initWithBinary:(KPKBinary *)binary;
- (void)quicklook;
@end