ObjFW  Diff

Differences From Artifact [ef950b210d]:

To Artifact [dc29860ae0]:


21
22
23
24
25
26
27


28

29
30
31
32
33
34
35

#import "OFXMLElement.h"
#import "OFString.h"
#import "OFArray.h"
#import "OFDictionary.h"
#import "OFXMLAttribute.h"
#import "OFAutoreleasePool.h"


#import "OFExceptions.h"


@implementation OFXMLElement
+ elementWithName: (OFString*)name_
{
	return [[[self alloc] initWithName: name_] autorelease];
}








>
>
|
>







21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38

#import "OFXMLElement.h"
#import "OFString.h"
#import "OFArray.h"
#import "OFDictionary.h"
#import "OFXMLAttribute.h"
#import "OFAutoreleasePool.h"

#import "OFInvalidArgumentException.h"
#import "OFNotImplementedException.h"
#import "OFUnboundNamespaceException.h"

@implementation OFXMLElement
+ elementWithName: (OFString*)name_
{
	return [[[self alloc] initWithName: name_] autorelease];
}