This file is indexed.

/usr/include/libxml++-2.6/libxml++/validators/dtdvalidator.h is in libxml++2.6-dev 2.34.2-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
/* xml++.h
 * libxml++ and this file are copyright (C) 2000 by Ari Johnson,
 * (C) 2002-2004 by the libxml dev team and
 * are covered by the GNU Lesser General Public License, which should be
 * included with libxml++ as the file COPYING.
 */

#ifndef __LIBXMLPP_PARSERS_DTDVALIDATOR_H
#define __LIBXMLPP_PARSERS_DTDVALIDATOR_H

#include <libxml++/validators/validator.h>
#include <libxml++/dtd.h>
#include <libxml++/document.h>

namespace xmlpp {

/** XML DOM parser.
 *
 */
class DtdValidator : public Validator
{
public:
  DtdValidator();
  explicit DtdValidator(const Glib::ustring& file);
  explicit DtdValidator(const Glib::ustring& external,const Glib::ustring& system);
  virtual ~DtdValidator();

  virtual void parse_subset(const Glib::ustring& external,const Glib::ustring& system);
  virtual void parse_file(const Glib::ustring& filename);
  virtual void parse_memory(const Glib::ustring& contents);
  virtual void parse_stream(std::istream& in);

  /** Test whether a document has been parsed.
  */
  operator bool() const;
  Dtd* get_dtd();
  const Dtd* get_dtd() const;

  bool validate(const Document* doc);

protected:
  virtual void release_underlying();

  Dtd* dtd_;
};




} // namespace xmlpp

#endif //__LIBXMLPP_PARSERS_DTDVALIDATOR_H