apps-gorm/GormFilesOwner.h
Richard Frith-Macdonald 2852d2e510 Fix use of #import
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@16111 72102866-910b-0410-8b05-ffd578937521
2003-03-03 09:15:48 +00:00

16 lines
328 B
Objective-C

#ifndef INCLUDED_GormFilesOwner_h
#define INCLUDED_GormFilesOwner_h
/*
* Each document has a GormFilesOwner object that is used as a placeholder
* for the owner of the document.
*/
@interface GormFilesOwner : NSObject
{
NSString *className;
}
- (NSString*) className;
- (void) setClassName: (NSString*)aName;
@end
#endif