/usr/include/xsd/cxx/xml/string.hxx is in xsdcxx 4.0.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 | // file : xsd/cxx/xml/string.hxx
// copyright : Copyright (c) 2005-2014 Code Synthesis Tools CC
// license : GNU GPL v2 + exceptions; see accompanying LICENSE file
#ifndef XSD_CXX_XML_STRING_HXX
#define XSD_CXX_XML_STRING_HXX
#include <string>
#include <cstddef> // std::size_t
#include <xercesc/util/XercesDefs.hpp> // XMLCh
#include <xsd/cxx/config.hxx> // XSD_CXX11
#ifdef XSD_CXX11
# include <memory> // std::unique_ptr
#else
# include <xsd/cxx/auto-array.hxx>
#endif
namespace xsd
{
namespace cxx
{
namespace xml
{
// Transcode a null-terminated string.
//
template <typename C>
std::basic_string<C>
transcode (const XMLCh* s);
// Transcode a potentially non-null-terminated string.
//
template <typename C>
std::basic_string<C>
transcode (const XMLCh* s, std::size_t length);
// For VC wchar_t and XMLCh are the same type so we cannot overload
// the transcode name. You should not use these functions anyway and
// instead use the xml::string class below.
//
template <typename C>
XMLCh*
transcode_to_xmlch (const C*);
template <typename C>
XMLCh*
transcode_to_xmlch (const std::basic_string<C>& s);
//
//
class string
{
public :
template <typename C>
string (const std::basic_string<C>& s)
: s_ (transcode_to_xmlch<C> (s)) {}
template <typename C>
string (const C* s): s_ (transcode_to_xmlch<C> (s)) {}
const XMLCh*
c_str () const {return s_.get ();}
XMLCh*
release () {return s_.release ();}
private:
string (const string&);
string&
operator= (const string&);
private:
#ifdef XSD_CXX11
std::unique_ptr<XMLCh[]> s_;
#else
auto_array<XMLCh> s_;
#endif
};
}
}
}
#endif // XSD_CXX_XML_STRING_HXX
#include <xsd/cxx/xml/string.ixx>
#include <xsd/cxx/xml/string.txx>
|