mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-23 11:51:08 +00:00
21 lines
328 B
C
21 lines
328 B
C
|
/*
|
||
|
* ProjectComponent.h created by probert on 2002-02-10 09:29:07 +0000
|
||
|
*
|
||
|
* Project ProjectCenter
|
||
|
*
|
||
|
* Created with ProjectCenter - http://www.gnustep.org
|
||
|
*
|
||
|
* $Id$
|
||
|
*/
|
||
|
|
||
|
@class PCProject;
|
||
|
@class NSView;
|
||
|
|
||
|
@protocol ProjectComponent <NSObject>
|
||
|
|
||
|
- (id)initWithProject:(PCProject *)aProject;
|
||
|
|
||
|
- (NSView *)componentView;
|
||
|
|
||
|
@end
|