mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-02-24 03:51:22 +00:00
17 lines
310 B
C
17 lines
310 B
C
|
#ifndef GORMFILESOWNER_H
|
||
|
#define 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
|