This file is indexed.

/usr/include/ui-gxmlcpp/Util.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
/**
 * @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_UTIL_HPP
#define UI_GXML_UTIL_HPP

// STDC++
#include <cassert>

// C libraries
#include <libxml/globals.h>

// C++ libraries
#include <ui-utilcpp/Misc.hpp>

namespace UI {
namespace GXML {

/** @brief Control freeing of memory via xmlFree. */
template <typename P>
class auto_xmlfree: public UI::Util::auto_base<P>
{
public:
	/** @brief Control this memory allocated via std::*alloc. */
	auto_xmlfree(P * const p)
		:UI::Util::auto_base<P>(p)
	{}

	/** @brief Free memory via std::free. */
	virtual ~auto_xmlfree()
	{
		xmlFree(UI::Util::auto_base<P>::p_);
	}
};

}}
#endif