mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 03:32:40 +00:00
27 lines
442 B
Objective-C
27 lines
442 B
Objective-C
//
|
|
// PasswordCreatorView.m
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 31.03.13.
|
|
// Copyright (c) 2013 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import "MPPasswordCreatorViewController.h"
|
|
|
|
@interface MPPasswordCreatorViewController ()
|
|
|
|
@end
|
|
|
|
@implementation MPPasswordCreatorViewController
|
|
|
|
- (id)init
|
|
{
|
|
self = [super initWithNibName:@"PasswordCreatorView" bundle:nil];
|
|
if (self) {
|
|
// setup
|
|
}
|
|
return self;
|
|
}
|
|
|
|
@end
|