Skeleton implementation of coding

This commit is contained in:
Gregory John Casamento 2019-11-09 06:39:15 -05:00
parent 027cb381bb
commit 3d77109fb6

View file

@ -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);