mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 05:01:26 +00:00
111df712fa
filesystems.
14 lines
238 B
Objective-C
14 lines
238 B
Objective-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
|