apps-gorm/GormFilesOwner.h

17 lines
310 B
C
Raw Normal View History

#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