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
|
// file : cutl/xml/serializer.ixx
// copyright : Copyright (c) 2009-2013 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#include <cutl/xml/value-traits.hxx>
namespace cutl
{
namespace xml
{
inline void serializer::
start_element (const qname_type& qname)
{
start_element (qname.namespace_ (), qname.name ());
}
inline void serializer::
start_element (const std::string& name)
{
start_element (std::string (), name);
}
inline void serializer::
start_attribute (const qname_type& qname)
{
start_attribute (qname.namespace_ (), qname.name ());
}
inline void serializer::
start_attribute (const std::string& name)
{
start_attribute (std::string (), name);
}
inline void serializer::
attribute (const qname_type& qname, const std::string& value)
{
attribute (qname.namespace_ (), qname.name (), value);
}
template <typename T>
inline void serializer::
attribute (const qname_type& qname, const T& value)
{
attribute (qname, value_traits<T>::serialize (value, *this));
}
inline void serializer::
attribute (const std::string& name, const std::string& value)
{
attribute (std::string (), name, value);
}
template <typename T>
inline void serializer::
attribute (const std::string& name, const T& value)
{
attribute (name, value_traits<T>::serialize (value, *this));
}
template <typename T>
inline void serializer::
attribute (const std::string& ns, const std::string& name, const T& value)
{
attribute (ns, name, value_traits<T>::serialize (value, *this));
}
template <typename T>
inline void serializer::
characters (const T& value)
{
characters (value_traits<T>::serialize (value, *this));
}
}
}
|