This file is indexed.

/usr/include/wxSVG/NodeListCls.h is in libwxsvg-dev 2:1.1.6~dfsg-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
//////////////////////////////////////////////////////////////////////////////
// Name:        NodeListCls.h
// Purpose:     
// Author:      Jonathan Hurtrel
// Created:     2007/06/08
// RCS-ID:      $Id: NodeListCls.h,v 1.2 2007/10/30 21:59:22 etisserant Exp $
// Copyright:   (c) 2005 Jonathan Hurtrel
// Licence:     wxWindows licence
//////////////////////////////////////////////////////////////////////////////

#ifndef wxSVG_NODE_LIST_CLS_H
#define wxSVG_NODE_LIST_CLS_H

#include "SVGElement.h"
#include "NodeList.h"

class wxNodeListCls
{
	protected:
		int list_size;
		wxNodeList my_list;
		
	public:
		wxNodeListCls(){ list_size=0;}
		wxNodeListCls(wxNodeList m_list){ my_list = m_list; list_size = my_list.size(); }
		~wxNodeListCls();
		
		wxSVGElement *GetFirstElement(){return my_list[0];}
		wxSVGElement *GetElement(int i){return my_list[i];}
		int GetSize(){return list_size;}
};
	
#endif //wxSVG_NODE_LIST_CLS_H