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