/usr/include/xsd/cxx/xml/string.hxx is in xsdcxx 3.3.0.1-1.2.
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 | // file : xsd/cxx/xml/string.hxx
// author : Boris Kolpackov <boris@codesynthesis.com>
// copyright : Copyright (c) 2005-2010 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 <xsd/cxx/auto-array.hxx>
#include <xercesc/util/XercesDefs.hpp> // XMLCh
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 VC7.1 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 ();
}
private:
string (const string&);
string&
operator= (const string&);
private:
auto_array<XMLCh> s_;
};
}
}
}
#endif // XSD_CXX_XML_STRING_HXX
#include <xsd/cxx/xml/string.ixx>
#include <xsd/cxx/xml/string.txx>
|