This file is indexed.

/usr/include/ui-gxmlcpp/XSLTree.hpp is in libui-gxmlcpp-dev 1.4.4-1build2.

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
/**
 * @file
 * @version @$Id$
 * @author
 * ui-gxmlcpp: C++ wrapper for Gnome libxml2/libxsl.
 * Copyright (C) Schlund+Partner AG 2002-2004.
 * Licensed under the GNU Lesser General Public License (LGPL). See
 * @ref License, or the file COPYING in distribution.
 */
#ifndef UI_GXML_XSLTREE_HPP
#define UI_GXML_XSLTREE_HPP

// STDC++
#include <string>
#include <cassert>

// C++ Libraries
#include <ui-gxmlcpp/Tree.hpp>

// C libraries
#include <libxslt/xsltInternals.h>

namespace UI {
namespace GXML {

/** @brief XSL (stylesheet) Tree. */
class XSLTree: public Tree
{
private:
	static xsltStylesheetPtr create(xmlDocPtr const doc);

public:
	/** @brief Error codes for exceptions. */
	enum ErrorCode
	{
		Style_ = 0    // Not a valid stylesheet
	};
	/** @brief Exceptions for this class. */
	typedef CodeException<ErrorCode> Exception;

	/** @name Standard tree constructors.
	 * @{ @see UI::GXML::Tree. */
	XSLTree(char const * xml, int len=-1, std::string const & base=DefaultDocbase_, int const options=0);
	XSLTree(std::string const & xml, std::string const & base=DefaultDocbase_, int const options=0);
	XSLTree(std::istream & xml, std::string const & base=DefaultDocbase_, int const options=0);
	XSLTree(FileConstructor const dummy, std::string const & file, int const options=0);
	/** @} */

private:
	/** @name Not implemented -- protect against segfaults.
	 * @{ */
	XSLTree(XSLTree const & tree);
	XSLTree & operator=(XSLTree const & xslTree);
	/** @} */

public:
	~XSLTree();

	/** @brief Get output charset encoding (i.e., what is specified in xsl::output); empty if none is specified. */
	std::string getOutputEncoding() const;

protected:
	/** @brief We need to access libxml2 doc pointer to parse the stylesheet with libxml2 function. */
	friend class XSLTransTree;
	/** @brief Get libxml2 stylesheet struct. */
	xsltStylesheet * getStylesheet() const;

private:
	xsltStylesheetPtr style_;
};

}}
#endif