25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
-
-
+
+
-
-
+
+
|
#endif
#import "XMPPXMLElementBuilder.h"
#import <ObjFW/OFMalformedXMLException.h>
@implementation XMPPXMLElementBuilder
- (void)parser: (OFXMLParser*)parser
foundProcessingInstructions: (OFString*)pi
- (void)parser: (OFXMLParser *)parser
foundProcessingInstructions: (OFString *)pi
{
@throw [OFMalformedXMLException exception];
}
- (void)parser: (OFXMLParser*)parser
foundComment: (OFString*)comment
- (void)parser: (OFXMLParser *)parser
foundComment: (OFString *)comment
{
@throw [OFMalformedXMLException exception];
}
@end
|