/usr/include/xsd/cxx/parser/map.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 | // file : xsd/cxx/parser/map.hxx
// copyright : Copyright (c) 2005-2014 Code Synthesis Tools CC
// license : GNU GPL v2 + exceptions; see accompanying LICENSE file
#ifndef XSD_CXX_PARSER_MAP_HXX
#define XSD_CXX_PARSER_MAP_HXX
#include <map>
#include <string>
#include <xsd/cxx/ro-string.hxx>
#include <xsd/cxx/parser/elements.hxx>
namespace xsd
{
namespace cxx
{
namespace parser
{
// Parser map. Used in the polymorphic document parsing.
//
template <typename C>
struct parser_map
{
virtual
~parser_map ();
// The type argument is the type name and namespace from the
// xsi:type attribute or substitution group map in the form
// "<name> <namespace>" with the space and namespace part
// absent if the type does not have a namespace.
//
virtual parser_base<C>*
find (const ro_string<C>& type) const = 0;
};
// Parser map implementation.
//
template <typename C>
struct parser_map_impl: parser_map<C>
{
parser_map_impl ();
void
insert (parser_base<C>&);
virtual parser_base<C>*
find (const ro_string<C>& type) const;
private:
parser_map_impl (const parser_map_impl&);
parser_map_impl&
operator= (const parser_map_impl&);
private:
struct string_comparison
{
bool
operator() (const C* x, const C* y) const
{
ro_string<C> s (x);
return s.compare (y) < 0;
}
};
typedef std::map<const C*, parser_base<C>*, string_comparison> map;
map map_;
};
}
}
}
#include <xsd/cxx/parser/map.ixx>
#include <xsd/cxx/parser/map.txx>
#endif // XSD_CXX_PARSER_MAP_HXX
|