blob: 1361fb4c06bd93abc55c3c06bc3fba6345b6e4f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
/*
* Copyright (c) 2004 World Wide Web Consortium,
*
* (Massachusetts Institute of Technology, European Research Consortium for
* Informatics and Mathematics, Keio University). All Rights Reserved. This
* work is distributed under the W3C(r) Software License [1] in the hope that
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* [1] http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231
*/
// File: http://www.w3.org/TR/2004/REC-DOM-Level-3-LS-20040407/ls.idl
#include "svglsimpl.h"
namespace org {
namespace w3c {
namespace dom {
namespace ls {
/*#########################################################################
## SVGLSParserImpl
#########################################################################*/
/**
*
*/
Document *SVGLSParserImpl::parse(const LSInput &inputArg)
throw(dom::DOMException, LSException)
{
Document *doc = LSParserImpl::parse(inputArg);
if (!doc)
{
return NULL;
}
svg::SvgParser svgParser;
Document *svgdoc = svgParser.parse(doc);
delete doc;
return svgdoc;
}
/*#########################################################################
## SVGLSSerializerImpl
#########################################################################*/
/**
*
*/
void SVGLSSerializerImpl::writeNode(const Node *nodeArg)
{
LSSerializerImpl::writeNode(nodeArg);
}
} //namespace ls
} //namespace dom
} //namespace w3c
} //namespace org
/*#########################################################################
## E N D O F F I L E
#########################################################################*/
|