-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathTPSDataCache.h
More file actions
55 lines (48 loc) · 2.09 KB
/
TPSDataCache.h
File metadata and controls
55 lines (48 loc) · 2.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*
* This header is generated by classdump-dyld 0.7
* on Wednesday, July 22, 2015 at 7:10:16 PM Japan Standard Time
* Operating System: Version 8.4 (Build 12H143)
* Image Source: /Applications/Tips.app/Tips
* classdump-dyld is licensed under GPLv3, Copyright © 2013 by Elias Limneos.
*/
#import <Tips/Tips-Structs.h>
#import <Tips/NSCopying.h>
#import <Tips/NSCoding.h>
@class NSString, NSDate;
@interface TPSDataCache : NSObject <NSCopying, NSCoding> {
unsigned _cacheType;
int _maxAge;
unsigned _fileSize;
NSString* _identifier;
NSString* _lastModified;
NSString* _locale;
NSDate* _updatedDate;
}
@property (nonatomic,readonly) char expired;
@property (assign,nonatomic) unsigned cacheType; //@synthesize cacheType=_cacheType - In the implementation block
@property (assign,nonatomic) int maxAge; //@synthesize maxAge=_maxAge - In the implementation block
@property (assign,nonatomic) unsigned fileSize; //@synthesize fileSize=_fileSize - In the implementation block
@property (nonatomic,retain) NSString * identifier; //@synthesize identifier=_identifier - In the implementation block
@property (nonatomic,retain) NSString * lastModified; //@synthesize lastModified=_lastModified - In the implementation block
@property (nonatomic,retain) NSString * locale; //@synthesize locale=_locale - In the implementation block
@property (nonatomic,retain) NSDate * updatedDate; //@synthesize updatedDate=_updatedDate - In the implementation block
-(void)setLastModified:(NSString *)arg1 ;
-(id)initWithCoder:(id)arg1 ;
-(void)encodeWithCoder:(id)arg1 ;
-(id)debugDescription;
-(NSString *)identifier;
-(id)copyWithZone:(NSZone*)arg1 ;
-(void)setIdentifier:(NSString *)arg1 ;
-(void)setLocale:(NSString *)arg1 ;
-(NSString *)locale;
-(unsigned)cacheType;
-(void)setCacheType:(unsigned)arg1 ;
-(void)setUpdatedDate:(NSDate *)arg1 ;
-(NSDate *)updatedDate;
-(char)expired;
-(unsigned)fileSize;
-(void)setFileSize:(unsigned)arg1 ;
-(int)maxAge;
-(void)setMaxAge:(int)arg1 ;
-(NSString *)lastModified;
@end