libs-gsweb/Examples/hello/HelloPage.m
David Ayers cad7077d49 * INSTALL: Update prerequisits and installation guidelines.
* GSWeb.framework/GSWApplication.m: Fix compile with debug=no.
        * GSWeb.framework/GSWeb.h: Include GNUstep.h if GNUSTEP is not
        defined for OS X.
        * GSWExtensions.framework/GSWExtWOCompatibility.h: Ditto.
        * GSWExtensionsGSW.framework/GSWExtGSWWOCompatibility.h:
        * Ditto.
        * Examples/hello/*.m: Ditto.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@17192 72102866-910b-0410-8b05-ffd578937521
2003-07-11 19:16:37 +00:00

31 lines
544 B
Objective-C

/*
* HelloPage.m
*
* 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 is the implementation file for the object that controls the Hello
* page.
*/
#ifndef GNUSTEP
#include <gnsutep/base/GNUstep.h>
#endif
#import "HelloPage.h"
@implementation HelloPage
- (void)dealloc
{
DESTROY(nameString);
[super dealloc];
}
- (void)setNameString:(NSString *)string
{
ASSIGN(nameString,string);
}
@end