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
422 B
Text
28 lines
422 B
Text
/*
|
|
* $FILENAME$ created by $USERNAME$ on $DATE$
|
|
*
|
|
* Project $PROJECTNAME$
|
|
*
|
|
* Created with ProjectCenter - http://www.gnustep.org
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
#ifndef _$UCFILENAMESANSEXTENSION$_H_
|
|
#define _$UCFILENAMESANSEXTENSION$_H_
|
|
|
|
#import <AppKit/AppKit.h>
|
|
|
|
@interface $FILENAMESANSEXTENSION$ : NSView
|
|
{
|
|
|
|
}
|
|
|
|
- (id)initWithFrame:(NSRect)aFrame;
|
|
|
|
- (void)drawRect:(NSRect)rect;
|
|
|
|
@end
|
|
|
|
#endif // _$UCFILENAMESANSEXTENSION$_H_
|
|
|