mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-07 05:30:31 +00:00
15 lines
238 B
C
15 lines
238 B
C
|
#ifndef __String_h
|
||
|
#define __String_h
|
||
|
#include "SchemeObject.h"
|
||
|
|
||
|
@interface String: SchemeObject
|
||
|
{
|
||
|
string value;
|
||
|
}
|
||
|
+ (id) newFromString: (string) s;
|
||
|
- (id) initWithString: (string) s;
|
||
|
- (string) stringValue;
|
||
|
@end
|
||
|
|
||
|
#endif //__String_h
|