mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-21 19:01:18 +00:00
every file template. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@12547 72102866-910b-0410-8b05-ffd578937521
28 lines
403 B
Text
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
|