[ADDED] OS X: Lots of warning checks when compiling. [ADDED] OS X: Ability to enable and disable iCloud. [ADDED] OS X: Support for rememberKey & saveKey. [UPDATED] storeKey -> saveKey: makes more sense to people. [IMPROVED] OS X: Password display window fancier.
17 lines
305 B
Objective-C
17 lines
305 B
Objective-C
//
|
|
// MPConfig.h
|
|
// MasterPassword
|
|
//
|
|
// Created by Maarten Billemont on 02/01/12.
|
|
// Copyright (c) 2012 Lyndir. All rights reserved.
|
|
//
|
|
|
|
@interface MPConfig : PearlConfig
|
|
|
|
@property (nonatomic, retain) NSNumber *saveKey;
|
|
@property (nonatomic, retain) NSNumber *rememberKey;
|
|
|
|
+ (MPConfig *)get;
|
|
|
|
@end
|