apps-gorm/GormFilesOwner.h

17 lines
328 B
C
Raw Normal View History

#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