o removed projectName (now inherit from GSWDeployedBundle)

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@18112 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
mguesdon 2003-11-23 18:00:48 +00:00
parent e3f1088205
commit 46cb322add
2 changed files with 6 additions and 17 deletions

View file

@ -36,25 +36,21 @@
//====================================================================
@interface GSWProjectBundle : GSWDeployedBundle
{
NSString* _projectName;
NSDictionary* _subprojects;
NSDictionary* _pbProjectDictionary;
};
-(id)initWithPath:(NSString*)aPath;
-(void)dealloc;
-(NSString*)description;
-(NSArray*)lockedPathsForResourcesOfType:(id)aType;
-(NSArray*)lockedPathsForResourcesInSubprojectsOfType:(id)aType;
-(NSString*)lockedRelativePathForResourceNamed:(NSString*)aName
forLanguage:(NSString*)aLanguage;
language:(NSString*)aLanguage;
-(NSString*)lockedRelativePathForResourceNamed:(NSString*)aName
forLanguages:(NSArray*)someLanguages;
languages:(NSArray*)someLanguages;
-(NSDictionary*)subprojects;
-(BOOL)isFramework;
-(GSWDeployedBundle*)projectBundle;
-(NSString*)projectPath;
-(NSString*)projectName;
-(NSDictionary*)_pbProjectDictionary;
@end