summaryrefslogtreecommitdiff
path: root/libxsd/xsd/cxx/tree/serialization/unsigned-int.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'libxsd/xsd/cxx/tree/serialization/unsigned-int.hxx')
-rw-r--r--libxsd/xsd/cxx/tree/serialization/unsigned-int.hxx44
1 files changed, 0 insertions, 44 deletions
diff --git a/libxsd/xsd/cxx/tree/serialization/unsigned-int.hxx b/libxsd/xsd/cxx/tree/serialization/unsigned-int.hxx
deleted file mode 100644
index eb34a1d..0000000
--- a/libxsd/xsd/cxx/tree/serialization/unsigned-int.hxx
+++ /dev/null
@@ -1,44 +0,0 @@
-// file : xsd/cxx/tree/serialization/unsigned-int.hxx
-// license : GNU GPL v2 + exceptions; see accompanying LICENSE file
-
-#ifndef XSD_CXX_TREE_SERIALIZATION_UNSIGNED_INT_HXX
-#define XSD_CXX_TREE_SERIALIZATION_UNSIGNED_INT_HXX
-
-#include <sstream>
-
-namespace XERCES_CPP_NAMESPACE
-{
- inline void
- operator<< (xercesc::DOMElement& e, unsigned int i)
- {
- std::basic_ostringstream<char> os;
- os << i;
- e << os.str ();
- }
-
- inline void
- operator<< (xercesc::DOMAttr& a, unsigned 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, unsigned int i)
- {
- ls.os_ << i;
- }
- }
- }
-}
-
-#endif // XSD_CXX_TREE_SERIALIZATION_UNSIGNED_INT_HXX