|
Revision 3247, 432 bytes
(checked in by timothy, 2 years ago)
|
One step closer to allowing SQL only transcripts.
|
| Line | |
|---|
| 1 |
#import "JVChatSession.h" |
|---|
| 2 |
#import <libxml/tree.h> |
|---|
| 3 |
|
|---|
| 4 |
@implementation JVChatSession |
|---|
| 5 |
- (void) dealloc { |
|---|
| 6 |
[_startDate release]; |
|---|
| 7 |
_startDate = nil; |
|---|
| 8 |
_transcript = nil; |
|---|
| 9 |
_node = NULL; |
|---|
| 10 |
[super dealloc]; |
|---|
| 11 |
} |
|---|
| 12 |
|
|---|
| 13 |
#pragma mark - |
|---|
| 14 |
|
|---|
| 15 |
- (void *) node { |
|---|
| 16 |
return _node; |
|---|
| 17 |
} |
|---|
| 18 |
|
|---|
| 19 |
- (void) setNode:(xmlNode *) node { |
|---|
| 20 |
_node = node; |
|---|
| 21 |
} |
|---|
| 22 |
|
|---|
| 23 |
#pragma mark - |
|---|
| 24 |
|
|---|
| 25 |
- (JVChatTranscript *) transcript { |
|---|
| 26 |
return _transcript; |
|---|
| 27 |
} |
|---|
| 28 |
|
|---|
| 29 |
- (NSDate *) startDate { |
|---|
| 30 |
return _startDate; |
|---|
| 31 |
} |
|---|
| 32 |
@end |
|---|