diff options
Diffstat (limited to 'xsd/libxsd/xsd/cxx/tree/serialization/unsigned-long.hxx')
-rw-r--r-- | xsd/libxsd/xsd/cxx/tree/serialization/unsigned-long.hxx | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/xsd/libxsd/xsd/cxx/tree/serialization/unsigned-long.hxx b/xsd/libxsd/xsd/cxx/tree/serialization/unsigned-long.hxx deleted file mode 100644 index 8808e34..0000000 --- a/xsd/libxsd/xsd/cxx/tree/serialization/unsigned-long.hxx +++ /dev/null @@ -1,45 +0,0 @@ -// file : xsd/cxx/tree/serialization/unsigned-long.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_LONG_HXX -#define XSD_CXX_TREE_SERIALIZATION_UNSIGNED_LONG_HXX - -#include <sstream> - -namespace XERCES_CPP_NAMESPACE -{ - inline void - operator<< (xercesc::DOMElement& e, unsigned long long l) - { - std::basic_ostringstream<char> os; - os << l; - e << os.str (); - } - - inline void - operator<< (xercesc::DOMAttr& a, unsigned long long l) - { - std::basic_ostringstream<char> os; - os << l; - a << os.str (); - } -} - -namespace xsd -{ - namespace cxx - { - namespace tree - { - template <typename C> - inline void - operator<< (list_stream<C>& ls, unsigned long long l) - { - ls.os_ << l; - } - } - } -} - -#endif // XSD_CXX_TREE_SERIALIZATION_UNSIGNED_LONG_HXX |