summaryrefslogtreecommitdiff
path: root/libxsd/xsd/cxx/tree/serialization/unsigned-byte.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'libxsd/xsd/cxx/tree/serialization/unsigned-byte.hxx')
-rw-r--r--libxsd/xsd/cxx/tree/serialization/unsigned-byte.hxx44
1 files changed, 0 insertions, 44 deletions
diff --git a/libxsd/xsd/cxx/tree/serialization/unsigned-byte.hxx b/libxsd/xsd/cxx/tree/serialization/unsigned-byte.hxx
deleted file mode 100644
index 889a0de..0000000
--- a/libxsd/xsd/cxx/tree/serialization/unsigned-byte.hxx
+++ /dev/null
@@ -1,44 +0,0 @@
-// file : xsd/cxx/tree/serialization/unsigned-byte.hxx
-// 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 <sstream>
-
-namespace XERCES_CPP_NAMESPACE
-{
- inline void
- operator<< (xercesc::DOMElement& e, unsigned char c)
- {
- std::basic_ostringstream<char> os;
- os << static_cast<unsigned short> (c);
- e << os.str ();
- }
-
- inline void
- operator<< (xercesc::DOMAttr& a, unsigned char c)
- {
- std::basic_ostringstream<char> os;
- os << static_cast<unsigned short> (c);
- a << os.str ();
- }
-}
-
-namespace xsd
-{
- namespace cxx
- {
- namespace tree
- {
- template <typename C>
- inline void
- operator<< (list_stream<C>& ls, unsigned char c)
- {
- ls.os_ << static_cast<unsigned short> (c);
- }
- }
- }
-}
-
-#endif // XSD_CXX_TREE_SERIALIZATION_UNSIGNED_BYTE_HXX