Yini  1.0
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Properties Macros Pages
BWUser.h
Go to the documentation of this file.
1 //
2 // BWUser.h
3 // Yini
4 //
5 // Created by siqi wang on 12-7-19.
6 // Copyright (c) 2012年 siqi wang. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 #import "DropboxSDK/DropboxSDK.h"
11 #import "BWAppDelegate.h"
12 
13 @interface BWUser : NSObject<NSCoding>
14 {
16 }
17 
18 
19 @property (nonatomic, strong) NSString *displayName;
20 
21 -(id)initWithName:(NSString*)name;
22 -(NSString*)profilePicPathForName:(NSString*)displayUserName;
23 
24 -(NSString*)profilePicLocalPath;
25 
26 
27 
28 
29 @end