apps-projectcenter/PCLib/ProjectComponent.h
Philippe C.D. Robert 849eb4ef3b Some more cleanup to fix some glitches (this time on GNUstep)
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@15082 72102866-910b-0410-8b05-ffd578937521
2002-11-24 11:43:20 +00:00

25 lines
393 B
Objective-C

/*
* ProjectComponent.h created by probert on 2002-02-10 09:29:07 +0000
*
* Project ProjectCenter
*
* Created with ProjectCenter - http://www.gnustep.org
*
* $Id$
*/
#ifndef _PROJECTCOMPONENT_H
#define _PROJECTCOMPONENT_H
@class PCProject;
@class NSView;
@protocol ProjectComponent <NSObject>
- (id)initWithProject:(PCProject *)aProject;
- (NSView *)componentView;
@end
#endif