summaryrefslogtreecommitdiff
path: root/libxsd/xsd/cxx/tree/serialization/byte.hxx
blob: f0e121e8dd2de223817468b2ffc252311125af6d (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
// file      : xsd/cxx/tree/serialization/byte.hxx
// license   : GNU GPL v2 + exceptions; see accompanying LICENSE file

#ifndef XSD_CXX_TREE_SERIALIZATION_BYTE_HXX
#define XSD_CXX_TREE_SERIALIZATION_BYTE_HXX

#include <sstream>

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

  inline void
  operator<< (xercesc::DOMAttr& a, signed char c)
  {
    std::basic_ostringstream<char> os;
    os << static_cast<short> (c);
    a << os.str ();
  }
}

namespace xsd
{
  namespace cxx
  {
    namespace tree
    {
      template <typename C>
      inline void
      operator<< (list_stream<C>& ls, signed char c)
      {
        ls.os_ << static_cast<short> (c);
      }
    }
  }
}

#endif // XSD_CXX_TREE_SERIALIZATION_BYTE_HXX