29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
extern void *_OFConstantStringClassReference;
# ifdef __cplusplus
}
# endif
#endif
/**
* @class OFConstantString OFConstantString.h ObjFW/OFConstantString.h
*
* @brief A class for storing constant strings using the `@""` literal.
*/
OF_SUBCLASSING_RESTRICTED
@interface OFConstantString: OFString
{
char *_cString;
|
|
|
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
extern void *_OFConstantStringClassReference;
# ifdef __cplusplus
}
# endif
#endif
/**
* @class OFConstantString OFConstantString.h ObjFW/ObjFW.h
*
* @brief A class for storing constant strings using the `@""` literal.
*/
OF_SUBCLASSING_RESTRICTED
@interface OFConstantString: OFString
{
char *_cString;
|