#import "JVChatSession.h" #import @implementation JVChatSession - (void) dealloc { [_startDate release]; _startDate = nil; _transcript = nil; _node = NULL; [super dealloc]; } #pragma mark - - (void *) node { return _node; } - (void) setNode:(xmlNode *) node { _node = node; } #pragma mark - - (JVChatTranscript *) transcript { return _transcript; } - (NSDate *) startDate { return _startDate; } @end