02ffa9611a
[MOVED] Key logic now in a common class extension on MPAppDelegate so it can be shared between iOS and OS X apps. [MOVED] MPConfig for sharing between iOS and OS X apps. [CHANGED] keyphrase -> key.
19 lines
336 B
Objective-C
19 lines
336 B
Objective-C
//
|
|
// MPConfig.h
|
|
// MasterPassword
|
|
//
|
|
// Created by Maarten Billemont on 02/01/12.
|
|
// Copyright (c) 2012 Lyndir. All rights reserved.
|
|
//
|
|
|
|
#import "MPConfig.h"
|
|
|
|
@interface MPiOSConfig : MPConfig
|
|
|
|
@property (nonatomic, retain) NSNumber *helpHidden;
|
|
@property (nonatomic, retain) NSNumber *showQuickStart;
|
|
|
|
+ (MPiOSConfig *)get;
|
|
|
|
@end
|