94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
- (void)release
{
}
- (void)dealloc
{
[self doesNotRecognizeSelector: _cmd];
abort();
/* Get rid of a stupid warning */
[super dealloc];
}
@end
@implementation OFSet
|
|
<
|
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
- (void)release
{
}
- (void)dealloc
{
OF_UNRECOGNIZED_SELECTOR
/* Get rid of a stupid warning */
[super dealloc];
}
@end
@implementation OFSet
|
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
|
- initWithSerialization: (OFXMLElement*)element
{
OF_INVALID_INIT_METHOD
}
- (size_t)count
{
[self doesNotRecognizeSelector: _cmd];
abort();
}
- (bool)containsObject: (id)object
{
[self doesNotRecognizeSelector: _cmd];
abort();
}
- (OFEnumerator*)objectEnumerator
{
[self doesNotRecognizeSelector: _cmd];
abort();
}
- (int)countByEnumeratingWithState: (of_fast_enumeration_state_t*)state
objects: (id*)objects
count: (int)count
{
[self doesNotRecognizeSelector: _cmd];
abort();
}
- (bool)isEqual: (id)object
{
OFSet *otherSet;
if (![object isKindOfClass: [OFSet class]])
|
|
<
|
<
|
<
|
<
|
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
|
- initWithSerialization: (OFXMLElement*)element
{
OF_INVALID_INIT_METHOD
}
- (size_t)count
{
OF_UNRECOGNIZED_SELECTOR
}
- (bool)containsObject: (id)object
{
OF_UNRECOGNIZED_SELECTOR
}
- (OFEnumerator*)objectEnumerator
{
OF_UNRECOGNIZED_SELECTOR
}
- (int)countByEnumeratingWithState: (of_fast_enumeration_state_t*)state
objects: (id*)objects
count: (int)count
{
OF_UNRECOGNIZED_SELECTOR
}
- (bool)isEqual: (id)object
{
OFSet *otherSet;
if (![object isKindOfClass: [OFSet class]])
|