ProjectManager 0.2
NSView Subclass.h
1/*
2 * Created by $USER$ on $DATE$
3 * All Rights Reserved
4 */
5
6#ifndef _$FILENAME_CAPS$_
7#define _$FILENAME_CAPS$_
8
9#import <Foundation/NSView.h>
10
11@interface $FILENAME_EXT$ : NSView
12{
13 // Instance variables
14}
15
16// Class methods
17
18
19
20// Instance methods
21
22
23
24@end
25
26#endif // _$FILENAME_CAPS$_
Definition Class.m:8