// file : xsd/cxx/tree/serialization/unsigned-byte.hxx // copyright : Copyright (c) 2005-2014 Code Synthesis Tools CC // license : GNU GPL v2 + exceptions; see accompanying LICENSE file #ifndef XSD_CXX_TREE_SERIALIZATION_UNSIGNED_BYTE_HXX #define XSD_CXX_TREE_SERIALIZATION_UNSIGNED_BYTE_HXX #include namespace XERCES_CPP_NAMESPACE { inline void operator<< (xercesc::DOMElement& e, unsigned char c) { std::basic_ostringstream os; os << static_cast (c); e << os.str (); } inline void operator<< (xercesc::DOMAttr& a, unsigned char c) { std::basic_ostringstream os; os << static_cast (c); a << os.str (); } } namespace xsd { namespace cxx { namespace tree { template inline void operator<< (list_stream& ls, unsigned char c) { ls.os_ << static_cast (c); } } } } #endif // XSD_CXX_TREE_SERIALIZATION_UNSIGNED_BYTE_HXX