Updated Submodules

This commit is contained in:
michael starke
2013-07-28 13:27:18 +02:00
parent 7ffcc0e43e
commit e050840b6f
10 changed files with 352 additions and 2 deletions

View File

@@ -0,0 +1,27 @@
//
// MPEntryInspectorViewController.m
// MacPass
//
// Created by Michael Starke on 27.07.13.
// Copyright (c) 2013 HicknHack Software GmbH. All rights reserved.
//
#import "MPEntryInspectorViewController.h"
@interface MPEntryInspectorViewController ()
@end
@implementation MPEntryInspectorViewController
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Initialization code here.
}
return self;
}
@end