New GSCustomView class

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@11077 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
fedor 2001-10-03 17:05:57 +00:00
parent cb4ab6e766
commit 10087d287b
3 changed files with 21 additions and 0 deletions

View file

@ -598,3 +598,15 @@ Class gmodel_class(void)
@end
@implementation GSCustomView
- (void) encodeWithCoder: (NSCoder*)aCoder
{
[super encodeWithCoder: aCoder];
}
- (id) initWithCoder: (NSCoder*)aCoder
{
return [super initWithCoder: aCoder];
}
@end