mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 14:02:28 +00:00
20 lines
409 B
Objective-C
20 lines
409 B
Objective-C
//
|
|
// MPAppDelegate.h
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 19.07.12.
|
|
// Copyright (c) 2012 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface MPAppDelegate : NSObject <NSApplicationDelegate>
|
|
|
|
@property (strong) IBOutlet NSWindow *passwordCreatorWindow;
|
|
|
|
- (IBAction)showPasswordCreator:(id)sender;
|
|
|
|
- (NSString *)applicationName;
|
|
- (void)lockAllDocuments;
|
|
|
|
@end |