2
0
MasterPassword/platform-darwin/Source/iOS/MPiOSAppDelegate.h

22 lines
631 B
C
Raw Normal View History

2011-11-30 21:42:40 +00:00
//
// MPiOSAppDelegate.h
2012-02-03 07:45:09 +00:00
// MasterPassword
2011-11-30 21:42:40 +00:00
//
// Created by Maarten Billemont on 24/11/11.
// Copyright (c) 2011 Lyndir. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "MPAppDelegate_Shared.h"
2011-11-30 21:42:40 +00:00
@interface MPiOSAppDelegate : MPAppDelegate_Shared
- (void)showFeedbackWithLogs:(BOOL)logs forVC:(UIViewController *)viewController;
- (void)openFeedbackWithLogs:(BOOL)logs forVC:(UIViewController *)viewController;
2012-02-02 13:56:09 +00:00
- (void)showExportForVC:(UIViewController *)viewController;
2017-04-01 04:30:25 +00:00
- (void)changeMasterPasswordFor:(MPUserEntity *)user saveInContext:(NSManagedObjectContext *)moc didResetBlock:(void ( ^ )(void))didReset;
2011-11-30 21:42:40 +00:00
@end