Files
MacPass/MacPass/MPAppDelegate.h
2013-07-03 23:40:20 +02:00

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