blob: 31f9115a7e19786b8d1c2972ac538574774ee524 (
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
#include <cppunit/config/SourcePrefix.h>
#include <cppunit/tools/XmlDocument.h>
#include <cppunit/tools/XmlElement.h>
CPPUNIT_NS_BEGIN
XmlDocument::XmlDocument( const std::string &encoding,
const std::string &styleSheet )
: m_styleSheet( styleSheet )
, m_rootElement( new XmlElement( "DummyRoot" ) )
, m_standalone( true )
{
setEncoding( encoding );
}
XmlDocument::~XmlDocument()
{
delete m_rootElement;
}
std::string
XmlDocument::encoding() const
{
return m_encoding;
}
void
XmlDocument::setEncoding( const std::string &encoding )
{
m_encoding = encoding.empty() ? std::string("ISO-8859-1") : encoding;
}
std::string
XmlDocument::styleSheet() const
{
return m_styleSheet;
}
void
XmlDocument::setStyleSheet( const std::string &styleSheet )
{
m_styleSheet = styleSheet;
}
bool
XmlDocument::standalone() const
{
return m_standalone;
}
void
XmlDocument::setStandalone( bool standalone )
{
m_standalone = standalone;
}
void
XmlDocument::setRootElement( XmlElement *rootElement )
{
if ( rootElement == m_rootElement )
return;
delete m_rootElement;
m_rootElement = rootElement;
}
XmlElement &
XmlDocument::rootElement() const
{
return *m_rootElement;
}
std::string
XmlDocument::toString() const
{
std::string asString = "<?xml version=\"1.0\" "
"encoding='" + m_encoding + "'";
if ( m_standalone )
asString += " standalone='yes'";
asString += " ?>\n";
if ( !m_styleSheet.empty() )
asString += "<?xml-stylesheet type=\"text/xsl\" href=\"" + m_styleSheet + "\"?>\n";
asString += m_rootElement->toString();
return asString;
}
CPPUNIT_NS_END
|