summaryrefslogtreecommitdiff
path: root/libxsd/xsd/cxx/tree/serialization/int.hxx
blob: 5785a3ab6a9b1e5fb0b1a1663f97f1d9ed303679 (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
// file      : xsd/cxx/tree/serialization/int.hxx
// author    : Boris Kolpackov <boris@codesynthesis.com>
// copyright : Copyright (c) 2005-2009 Code Synthesis Tools CC
// license   : GNU GPL v2 + exceptions; see accompanying LICENSE file

#ifndef XSD_CXX_TREE_SERIALIZATION_INT_HXX
#define XSD_CXX_TREE_SERIALIZATION_INT_HXX

#include <sstream>

namespace XERCES_CPP_NAMESPACE
{
  inline void
  operator<< (xercesc::DOMElement& e, int i)
  {
    std::basic_ostringstream<char> os;
    os << i;
    e << os.str ();
  }

  inline void
  operator<< (xercesc::DOMAttr& a, int i)
  {
    std::basic_ostringstream<char> os;
    os << i;
    a << os.str ();
  }
}

namespace xsd
{
  namespace cxx
  {
    namespace tree
    {
      template <typename C>
      inline void
      operator<< (list_stream<C>& ls, int i)
      {
        ls.os_ << i;
      }
    }
  }
}

#endif // XSD_CXX_TREE_SERIALIZATION_INT_HXX