mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-28 06:35:26 +00:00
See ChangeLog
Monotone-Parent: 90a8d72f1dd06d625072289c8e80770857c17810 Monotone-Revision: b650569887c118b01da27c8339a401335419846c Monotone-Author: ludovic@Sophos.ca Monotone-Date: 2009-03-03T19:08:02 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -30,18 +30,21 @@
|
||||
|
||||
An object with the same API like NSUserDefaults which retrieves profile
|
||||
information for users in the database.
|
||||
|
||||
It does NOT store values internally but rather uses an external
|
||||
mutable dictionary for this (generally coming from SOGoCache)
|
||||
*/
|
||||
|
||||
@class NSString, NSURL, NSUserDefaults, NSArray, NSDictionary, NSData;
|
||||
@class NSCalendarDate, NSMutableDictionary;
|
||||
@class NSString, NSURL, NSUserDefaults, NSArray, NSDictionary;
|
||||
@class NSData, NSCalendarDate, NSMutableDictionary;
|
||||
|
||||
@interface SOGoUserDefaults : NSObject
|
||||
{
|
||||
NSURL *url;
|
||||
NSString *uid;
|
||||
NSString *fieldName;
|
||||
NSMutableDictionary *values;
|
||||
NSCalendarDate *lastFetch;
|
||||
NSMutableDictionary *values;
|
||||
|
||||
struct
|
||||
{
|
||||
@@ -50,9 +53,9 @@
|
||||
} defFlags;
|
||||
}
|
||||
|
||||
- (id) initWithTableURL: (NSURL *) url
|
||||
uid: (NSString *) uid
|
||||
fieldName: (NSString *) fieldName;
|
||||
- (id) initWithTableURL: (NSURL *) theURL
|
||||
uid: (NSString *) theUID
|
||||
fieldName: (NSString *) theFieldName;
|
||||
|
||||
/* value access */
|
||||
- (void) setValues: (NSDictionary *) theValues;
|
||||
|
||||
Reference in New Issue
Block a user