mved files to prepare for Linux version
This commit is contained in:
parent
5687a30077
commit
248d8fa1b6
175 changed files with 12602 additions and 0 deletions
27
Mac/AccessToken.h
Normal file
27
Mac/AccessToken.h
Normal file
|
@ -0,0 +1,27 @@
|
|||
//
|
||||
// AccessToken.h
|
||||
// Tentia
|
||||
//
|
||||
// Created by Jeena Paradies on 19/09/2011.
|
||||
// Copyright 2011 __MyCompanyName__. All rights reserved.
|
||||
//
|
||||
|
||||
|
||||
|
||||
@interface AccessToken : NSObject {
|
||||
NSUserDefaults *d;
|
||||
}
|
||||
|
||||
- (void)setString:(NSString *)string forKey:(NSString *)aKey;
|
||||
- (NSString *)stringForKey:(NSString *)aKey;
|
||||
|
||||
- (void)setAccessToken:(NSString *)_accessToken;
|
||||
- (NSString *)accessToken;
|
||||
- (void)setSecret:(NSString *)_secret;
|
||||
- (NSString *)secret;
|
||||
- (void)setUserId:(NSString *)_userId;
|
||||
- (NSString *)userId;
|
||||
- (void)setScreenName:(NSString *)_screenName;
|
||||
- (NSString *)screenName;
|
||||
|
||||
@end
|
Reference in a new issue