ObjFW  Diff

Differences From Artifact [267c53672b]:

To Artifact [8362d51987]:


19
20
21
22
23
24
25

26
27
28
29
30
31
32
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33







+







#include <stdlib.h>
#include <string.h>
#include <assert.h>

#import "OFURL.h"
#import "OFString.h"
#import "OFArray.h"
#import "OFXMLElement.h"
#import "OFAutoreleasePool.h"

#import "OFInvalidArgumentException.h"
#import "OFInvalidFormatException.h"
#import "OFOutOfMemoryException.h"

#import "macros.h"
526
527
528
529
530
531
532
533

534
535
536
537
538





539
540
541
542
543
544







545
546

547
548
527
528
529
530
531
532
533

534
535




536
537
538
539
540
541





542
543
544
545
546
547
548
549

550
551
552







-
+

-
-
-
-
+
+
+
+
+

-
-
-
-
-
+
+
+
+
+
+
+

-
+


}

- (OFString*)description
{
	return [self string];
}

- (OFString*)stringBySerializing
- (OFXMLElement*)XMLElementBySerializing
{
	OFAutoreleasePool *pool = [[OFAutoreleasePool alloc] init];
	OFString *ret = [[OFString alloc]
	    initWithFormat: @"(class=OFURL,version=0)<%@>",
			    [[self string] stringBySerializing]];
	OFAutoreleasePool *pool;
	OFXMLElement *element;

	element = [OFXMLElement elementWithName: @"object"
				      namespace: OF_SERIALIZATION_NS];

	@try {
		[pool release];
	} @finally {
		[ret autorelease];
	}
	pool = [[OFAutoreleasePool alloc] init];

	[element addAttributeWithName: @"class"
			  stringValue: [self className]];
	[element setStringValue: [self string]];

	[pool release];

	return ret;
	return element;
}
@end