aboutsummaryrefslogtreecommitdiff
path: root/cutl/xml/serializer.ixx
blob: 115b77bdfc014c044778f21bdd83de311c37d71b (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
// file      : cutl/xml/serializer.ixx
// copyright : Copyright (c) 2009-2013 Code Synthesis Tools CC
// license   : MIT; see accompanying LICENSE file

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);
    }

    inline void serializer::
    attribute (const std::string& name, const std::string& value)
    {
      attribute (std::string (), name, value);
    }
  }
}