mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-02-24 12:11:18 +00:00
21 lines
362 B
C
21 lines
362 B
C
|
#ifndef INC_Main_h_
|
||
|
#define INC_Main_h_
|
||
|
|
||
|
#include <GSWeb/GSWeb.h>
|
||
|
|
||
|
@class GSWDisplayGroup;
|
||
|
|
||
|
@interface Main : GSWComponent
|
||
|
{
|
||
|
id author; /* Custom objects or EOGenericRecord. */
|
||
|
GSWDisplayGroup *authorDG; /* Initiilaized by [GSWComponent-init]
|
||
|
via the components .gswi file. */
|
||
|
}
|
||
|
|
||
|
- (void)selectObject;
|
||
|
- (void)saveChanges;
|
||
|
|
||
|
@end
|
||
|
|
||
|
#endif
|