00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 @class NSString;
00010
00011 @interface PDCommentAuthor : NSObject
00012 {
00013 unsigned int mId;
00014 NSString *mName;
00015 NSString *mInitials;
00016 unsigned int mColorIndex;
00017 }
00018
00019 - (id)init;
00020 - (void)dealloc;
00021 - (unsigned int)id;
00022 - (void)setId:(unsigned int)fp8;
00023 - (id)name;
00024 - (void)setName:(id)fp8;
00025 - (id)initials;
00026 - (void)setInitials:(id)fp8;
00027 - (unsigned int)colorIndex;
00028 - (void)setColorIndex:(unsigned int)fp8;
00029
00030 @end
00031