mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 08:26:27 +00:00
Skeleton implementation of coding
This commit is contained in:
parent
027cb381bb
commit
3d77109fb6
1 changed files with 16 additions and 0 deletions
|
@ -55,6 +55,22 @@
|
|||
return self;
|
||||
}
|
||||
|
||||
- (instancetype) initWithCoder: (NSCoder *)coder
|
||||
{
|
||||
self = [super initWithCoder: coder];
|
||||
if(self != nil)
|
||||
{
|
||||
// TODO: Implement coding...
|
||||
}
|
||||
return self;
|
||||
}
|
||||
|
||||
- (void) encodeWithCoder: (NSCoder *)coder
|
||||
{
|
||||
[super encodeWithCoder: coder];
|
||||
// TODO: Implement coding...
|
||||
}
|
||||
|
||||
- (void) dealloc
|
||||
{
|
||||
RELEASE(_calendar);
|
||||
|
|
Loading…
Reference in a new issue