ObjFW  Diff

Differences From Artifact [a80691a45f]:

To Artifact [1b135c3546]:


68
69
70
71
72
73
74




















75
 */
- (OFString*)namespace;

/**
 * \return The string value of the attribute as an autoreleased OFString
 */
- (OFString*)stringValue;




















@end







>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>

68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
 */
- (OFString*)namespace;

/**
 * \return The string value of the attribute as an autoreleased OFString
 */
- (OFString*)stringValue;

/**
 * \return An integer with the decimal value of the attribute
 */
- (intmax_t)decimalValue;

/**
 * \return An integer with the hexadecimal value of the attribute
 */
- (uintmax_t)hexadecimalValue;

/**
 * \return A float with the float value of the attribute
 */
- (float)floatValue;

/**
 * \return A double with the double value of the attribute
 */
- (double)doubleValue;
@end