mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-02-23 11:41:20 +00:00
21 lines
389 B
C
21 lines
389 B
C
|
/*
|
||
|
* Main.h
|
||
|
*
|
||
|
* You may freely copy, distribute and reuse the code in this example.
|
||
|
* We disclaims any warranty of any kind, expressed or implied, as to
|
||
|
* its fitness for any particular use.
|
||
|
*
|
||
|
* This file declares the interface to the object that controls the DynamicElements
|
||
|
* page.
|
||
|
*/
|
||
|
|
||
|
|
||
|
#import <GSWeb/GSWeb.h>
|
||
|
|
||
|
@interface Main: GSWComponent
|
||
|
{
|
||
|
id tmpDynamicElement;
|
||
|
}
|
||
|
|
||
|
@end
|