apps-projectcenter/PCBaseFileTypes/nsviewclass.template
Philippe C.D. Robert f5b3597a80 Added support for a NSView subclass template. Also added a description to
every file template.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@12547 72102866-910b-0410-8b05-ffd578937521
2002-02-16 20:43:55 +00:00

28 lines
403 B
Text

/*
* $FILENAME$ created by $USERNAME$ on $DATE$
*
* Project $PROJECTNAME$
*
* Created with ProjectCenter - http://www.gnustep.org
*
* $Id$
*/
#import "$FILENAMESANSEXTENSION$.h"
@implementation $FILENAMESANSEXTENSION$
- (id)initWithFrame:(NSRect)aFrame
{
if((self = [super initWithFrame:aFrame]))
{
}
return self;
}
- (void)drawRect:(NSRect)rect
{
// Drawing...
}
@end