mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 08:12:28 +00:00
31 lines
539 B
Objective-C
31 lines
539 B
Objective-C
//
|
|
// PasswordCreatorView.h
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 31.03.13.
|
|
// Copyright (c) 2013 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
|
|
#import "MPViewController.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@class MPDocument;
|
|
@protocol MPModelChangeObserving;
|
|
|
|
@interface MPPasswordCreatorViewController : MPViewController <NSTextFieldDelegate>
|
|
|
|
@property (assign) BOOL allowsEntryDefaults;
|
|
|
|
/**
|
|
* Should be called to reset the generator
|
|
*
|
|
* @param sender sender of the action
|
|
*/
|
|
- (void)reset;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|