encoding/decoding methods

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@11617 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
ljulliar 2001-12-03 21:14:19 +00:00
parent 5cc9449221
commit 028b1c96f1
2 changed files with 29 additions and 0 deletions

View file

@ -660,5 +660,29 @@
}
}
}
/*
* Encoding/Decoding
*/
- (void) encodeWithCoder: (NSCoder*)aCoder
{
[super encodeWithCoder: aCoder];
/* Nothing else to encode in NSTableHeaderView:
- _tableView is set by the parent NSTableView
- _resizedColumn is reset on decoding anyway
*/
}
- (id) initWithCoder: (NSCoder*)aDecoder
{
self = [super initWithCoder: aDecoder];
_tableView = nil;
_resizedColumn = -1;
return self;
}
@end