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,22 @@
//
// MPPreviewViewController.m
// MacPass
//
// Created by Michael Starke on 18/03/14.
// Copyright (c) 2014 HicknHack Software GmbH. All rights reserved.
//
#import "MPPreviewViewController.h"
@interface MPPreviewViewController ()
@end
@implementation MPPreviewViewController
- (instancetype)init {
self = [self initWithNibName:@"PreviewView" bundle:nil];
return self;
}
@end