Yini  1.0
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Properties Macros Pages
BWComment.h
Go to the documentation of this file.
1 //
2 // BWComment.h
3 // Yini
4 //
5 // Created by siqi wang on 12-7-20.
6 // Copyright (c) 2012年 siqi wang. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 #import "BWUser.h"
11 #import "BWAgeCalculator.h"
12 @interface BWComment : NSObject<NSCoding>
13 
14 @property (nonatomic, strong) NSDate *createdDate;
15 @property (nonatomic, strong) BWUser *author;
16 @property (nonatomic, strong) NSString *commentString;
17 -(id)initWithAuthor:(BWUser*)theAuthor commentString:(NSString*)theCommentString;
18 
19 -(NSString*)ageDescription;
20 
21 
22 @end