2001-12-11 14:35:30 +00:00
|
|
|
/*
|
|
|
|
* HelloPage.h
|
|
|
|
*
|
|
|
|
* You may freely copy, distribute and reuse the code in this example.
|
2002-11-18 11:14:55 +00:00
|
|
|
* We disclaims any warranty of any kind, expressed or implied, as to
|
2001-12-11 14:35:30 +00:00
|
|
|
* its fitness for any particular use.
|
|
|
|
*
|
|
|
|
* This file declares the interface to the object that controls the Hello
|
|
|
|
* page.
|
|
|
|
*/
|
|
|
|
|
2010-06-09 21:38:01 +00:00
|
|
|
#ifndef __HelloPage_h__
|
|
|
|
#define __HelloPage_h__
|
2001-12-11 14:35:30 +00:00
|
|
|
|
2010-04-22 04:28:50 +00:00
|
|
|
#include <WebObjects/WebObjects.h>
|
2001-12-11 14:35:30 +00:00
|
|
|
|
2010-04-22 04:28:50 +00:00
|
|
|
@interface HelloPage:WOComponent
|
2001-12-11 14:35:30 +00:00
|
|
|
{
|
|
|
|
NSString *nameString;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)setNameString:(NSString *)string;
|
|
|
|
|
|
|
|
@end
|
2010-06-09 21:38:01 +00:00
|
|
|
|
|
|
|
#endif // __HelloPage_h__
|