summaryrefslogtreecommitdiff
path: root/libxsd/xsd/cxx/tree/serialization/element-map.txx
blob: 63149f48592d46f4cdb23166cf4f26c2569376b9 (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
// file      : xsd/cxx/tree/serialization/element-map.txx
// copyright : Copyright (c) 2005-2014 Code Synthesis Tools CC
// license   : GNU GPL v2 + exceptions; see accompanying LICENSE file

#ifndef XSD_CXX_TREE_SERIALIZATION_ELEMENT_MAP_TXX
#define XSD_CXX_TREE_SERIALIZATION_ELEMENT_MAP_TXX

#include <xsd/cxx/tree/exceptions.hxx>

namespace xsd
{
  namespace cxx
  {
    namespace tree
    {
      template <typename C, typename T>
      void element_map<C, T>::
      serialize (xercesc::DOMElement& e, const element_type& x)
      {
        const qualified_name n (x._name (), x._namespace ());
        typename map::const_iterator i (map_->find (n));

        if (i != map_->end () && i->second.serializer_ != 0)
          return (i->second.serializer_) (e, x);
        else
          throw no_element_info<C> (n.name (), n.namespace_ ());
      }

      template<typename T, typename C, typename B>
      void
      serializer_impl (xercesc::DOMElement& e, const element_type<C, B>& x)
      {
        e << static_cast<const T&> (x);
      }
    }
  }
}

#endif // XSD_CXX_TREE_SERIALIZATION_ELEMENT_MAP_TXX